XlsWorksheet
ToEMFStream Method (Stream, Int32, Int32, Int32, Int32)
|
Converts a range of cells in the worksheet to an EMF (Enhanced Metafile) 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 ToEMFStream(
Stream stream,
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
Public Sub ToEMFStream (
stream As Stream,
firstRow As Integer,
firstColumn As Integer,
lastRow As Integer,
lastColumn As Integer
)
public:
void ToEMFStream(
Stream^ stream,
int firstRow,
int firstColumn,
int lastRow,
int lastColumn
)
member ToEMFStream :
stream : Stream *
firstRow : int *
firstColumn : int *
lastRow : int *
lastColumn : int -> unit
Parameters
-
stream
-
Type:
System.IO
Stream
stream.
-
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.
See Also