Initializes a new instance of the Image class.

Image()

public Image();

Image(String, Int)

public Image(string fileName, int filterIndex);

Image(System.Drawing.Image)

public Image(System.Drawing.Image image);

Image(System.IO.MemoryStream)

public Image(System.IO.MemoryStream memoryStream);

Image(System.IO.UnmanagedMemoryStream)

public Image(System.IO.UnmanagedMemoryStream unmanagedStream);

Parameters

Parameter Description
fileName Specifies the name and the path of the file from which the image is loaded.
filterIndex Specifies the index of the filter used to load the image. It is an index in the string returned through the ImageCollection.ImportFilters property starting with 1. Possible values are:
Event Description
1 Windows Bitmap (.BMP)
2 Tagged Image Format (.TIF)
3 Windows Metafile (.WMF)
4 Portable Network Graphics (.PNG)
5 JPEG File Interchange Format (.JPG, .JPEG)
6 Graphics Interchange Format (.GIF)
7 Windows Enhanced Metafile (.EMF)
8 Scalable Vector Graphics (.SVG)
image Specifies a System.Drawing.Image object which is used to initialize the TXTextControl image.
memoryStream Specifies a memory stream from which the data for the TXTextControl image is read.
unmanagedStream Specifies an unmanaged memory stream from which the data for the TXTextControl image is read.