[]
        
(Showing Draft Content)

C1.Win.C1Chart3D.C1Chart3D.SaveImage

SaveImage Method

SaveImage(Stream, ImageFormat, Size)

Saves an chart image of the specified format and size to the specified stream.

Declaration
public void SaveImage(Stream stream, ImageFormat imgFmt, Size sz)
Parameters
Type Name Description
Stream stream

Stream.

ImageFormat imgFmt

Image format.

Size sz

Image size in pixels.

Remarks

This method creates an image of the specified format of the current chart display and saves the results to the specified stream. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(Stream, ImageFormat)

Saves an chart image of the specified format to the specified stream.

Declaration
public void SaveImage(Stream stream, ImageFormat imgFmt)
Parameters
Type Name Description
Stream stream

Stream.

ImageFormat imgFmt

Image format

Remarks

This method creates an image of the specified format of the current chart display and saves the results to the specified stream. The size of the current display, in pixels, is used. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(ref byte[], ImageFormat, Size)

Saves an chart image of the specified format and size to the specified byte array.

Declaration
public void SaveImage(ref byte[] byteArray, ImageFormat imgFmt, Size sz)
Parameters
Type Name Description
byte[] byteArray

Byte array.

ImageFormat imgFmt

Image format.

Size sz

Image size in pixels.

Remarks

This method creates an image of the specified format and size of the current chart display and saves the results to the specified byte array. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(ref byte[], ImageFormat)

Saves an chart image of the specified format to the specified byte array.

Declaration
public void SaveImage(ref byte[] byteArray, ImageFormat imgFmt)
Parameters
Type Name Description
byte[] byteArray

Byte array.

ImageFormat imgFmt

Image format.

Remarks

This method creates an image of the specified format and the current display size and saves the results to the specified byte array. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(ImageFormat, Size)

Saves an chart image of the specified format and size to the clipboard.

Declaration
public void SaveImage(ImageFormat imgFmt, Size sz)
Parameters
Type Name Description
ImageFormat imgFmt

Image format.

Size sz

Image size in pixels.

Remarks

This method creates an image of the specified format and size and saves the results to the clipboard. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(ImageFormat)

Saves an chart image of the specified format and display size to the clipboard.

Declaration
public void SaveImage(ImageFormat imgFmt)
Parameters
Type Name Description
ImageFormat imgFmt

Image format.

Remarks

This method creates an image of the specified format and display size and saves the results to the clipboard. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(string, ImageFormat, Size)

Saves an chart image of the specified format and size to the specified file.

Declaration
public void SaveImage(string filename, ImageFormat imgFmt, Size sz)
Parameters
Type Name Description
string filename

File name.

ImageFormat imgFmt

Image format.

Size sz

Image size in pixels.

Remarks

This method creates an image of the specified format and size and saves the results to the specified file. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also

SaveImage(string, ImageFormat)

Saves an chart image of the specified format and display size to the specified file.

Declaration
public void SaveImage(string filename, ImageFormat imgFmt)
Parameters
Type Name Description
string filename

File name.

ImageFormat imgFmt

Image format

Remarks

This method creates an image of the specified format and display size and saves the results to the specified file. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also