Workbook
SaveAsImage Method (Single, Single)
|
Saves the Excel workbook as images.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public Image[] SaveAsImage(
float dpiX,
float dpiY
)
Public Function SaveAsImage (
dpiX As Single,
dpiY As Single
) As Image()
public:
array<Image^>^ SaveAsImage(
float dpiX,
float dpiY
)
member SaveAsImage :
dpiX : float32 *
dpiY : float32 -> Image[]
Parameters
-
dpiX
-
Type:
System
Single
The horizontal dots per inch.
-
dpiY
-
Type:
System
Single
The vertical dots per inch.
Return Value
Type:
Image
An array of images representing the saved Excel workbook.
See Also