XlsWorksheet
ToImage Method
|
Convert worksheet to Image.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public Image ToImage(
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
Public Function ToImage (
firstRow As Integer,
firstColumn As Integer,
lastRow As Integer,
lastColumn As Integer
) As Image
public:
Image^ ToImage(
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
member ToImage :
firstRow : int *
firstColumn : int *
lastRow : int *
lastColumn : int -> Image
Parameters
-
firstRow
-
Type:
System
Int32
One-based index of the first row to convert.
-
firstColumn
-
Type:
System
Int32
One-based index of the first column to convert.
-
lastRow
-
Type:
System
Int32
One-based index of the last row to convert.
-
lastColumn
-
Type:
System
Int32
One-based index of the last column to convert.
Return Value
Type:
Image
See Also