[]
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)
Public Sub SaveImage(Filename As String, ImgFmt As ImageFormat, sz As Size)
| 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)
Public Sub SaveImage(Filename As String, ImgFmt As ImageFormat)
| 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)
Public Sub SaveImage(stream As Stream, ImgFmt As ImageFormat, sz As Size)
| 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)
Public Sub SaveImage(stream As Stream, ImgFmt As ImageFormat)
| 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)
Public Sub SaveImage(ByRef ByteArray As Byte(), ImgFmt As ImageFormat, sz As Size)
| 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)
Public Sub SaveImage(ByRef ByteArray As Byte(), ImgFmt As ImageFormat)
| 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)
Public Sub SaveImage(imgfmt As ImageFormat, sz As Size)
| 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)
Public Sub SaveImage(ImgFmt As ImageFormat)
| Type | Name | Description |
|---|---|---|
| ImageFormat | ImgFmt | Image format. |