XlsWorkbook
SaveAsEmfStream Method
|
Saves the specified sheet as an EMF stream.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public void SaveAsEmfStream(
int sheetIndex,
Stream EmfStream,
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
Public Sub SaveAsEmfStream (
sheetIndex As Integer,
EmfStream As Stream,
firstRow As Integer,
firstColumn As Integer,
lastRow As Integer,
lastColumn As Integer
)
public:
void SaveAsEmfStream(
int sheetIndex,
Stream^ EmfStream,
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
member SaveAsEmfStream :
sheetIndex : int *
EmfStream : Stream *
firstRow : int *
firstColumn : int *
lastRow : int *
lastColumn : int -> unit
Parameters
-
sheetIndex
-
Type:
System
Int32
The zero-based index of the sheet to save.
-
EmfStream
-
Type:
System.IO
Stream
The stream to save the EMF data to.
-
firstRow
-
Type:
System
Int32
The zero-based index of the first row to include in the save.
-
firstColumn
-
Type:
System
Int32
The zero-based index of the first column to include in the save.
-
lastRow
-
Type:
System
Int32
The zero-based index of the last row to include in the save.
-
lastColumn
-
Type:
System
Int32
The zero-based index of the last column to include in the save.
See Also