[]
Saves an image of the chart to the specified file in the specified format of the specified size.
public void SaveImage(string Filename, ImageFormat ImgFmt, Size sz)
Type | Name | Description |
---|---|---|
string | Filename | Image file name. |
ImageFormat | ImgFmt | Image format. |
Size | sz | Image size. |
Saves an image of the chart to the specified file in the specified format.
public void SaveImage(string Filename, ImageFormat ImgFmt)
Type | Name | Description |
---|---|---|
string | Filename | Image file name. |
ImageFormat | ImgFmt | Image format |
Saves an image of the chart to the specified stream in the specified format of the specified size.
public void SaveImage(Stream stream, ImageFormat ImgFmt, Size sz)
Type | Name | Description |
---|---|---|
Stream | stream | Stream for image output. |
ImageFormat | ImgFmt | Image format. |
Size | sz | Image size |
Saves an image of the chart to the specified stream in the specified format.
public void SaveImage(Stream stream, ImageFormat ImgFmt)
Type | Name | Description |
---|---|---|
Stream | stream | Stream for image output. |
ImageFormat | ImgFmt | Image format. |
Saves an image of the chart in a Byte array in the specified format of the specified size.
public void SaveImage(ref byte[] ByteArray, ImageFormat ImgFmt, Size sz)
Type | Name | Description |
---|---|---|
byte[] | ByteArray | Byte array for image output. |
ImageFormat | ImgFmt | Image format. |
Size | sz | Image size. |
Saves an image of the chart in a Byte array in the specified format.
public void SaveImage(ref byte[] ByteArray, ImageFormat ImgFmt)
Type | Name | Description |
---|---|---|
byte[] | ByteArray | Byte array for image output. |
ImageFormat | ImgFmt | Image format. |
Saves an image of the chart to the clipboard using the specified size and the specified format.
public void SaveImage(ImageFormat imgfmt, Size sz)
Type | Name | Description |
---|---|---|
ImageFormat | imgfmt | Image format. |
Size | sz | Image size. |
Saves an image of the chart to the clipboard using display size.
public void SaveImage(ImageFormat ImgFmt)
Type | Name | Description |
---|---|---|
ImageFormat | ImgFmt | Image format. |