XlsWorkbook
SaveAsImages Method (Single, Single)
|
Saves the current figure as an array of images with the specified DPI values.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public Image[] SaveAsImages(
float dpiX,
float dpiY
)
Public Function SaveAsImages (
dpiX As Single,
dpiY As Single
) As Image()
public:
array<Image^>^ SaveAsImages(
float dpiX,
float dpiY
)
member SaveAsImages :
dpiX : float32 *
dpiY : float32 -> Image[]
Parameters
-
dpiX
-
Type:
System
Single
The horizontal DPI value for the images.
-
dpiY
-
Type:
System
Single
The vertical DPI value for the images.
Return Value
Type:
Image
An array of Image objects representing the saved images.
See Also