RtfTextWriter
WriteLine Method (
Char
, Int32, Int32)
|
Writes a subarray of characters followed by a line terminator to the text stream.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public override void WriteLine(
char[] buffer,
int index,
int count
)
Public Overrides Sub WriteLine (
buffer As Char(),
index As Integer,
count As Integer
)
public:
virtual void WriteLine(
array<wchar_t>^ buffer,
int index,
int count
) override
abstract WriteLine :
buffer : char[] *
index : int *
count : int -> unit
override WriteLine :
buffer : char[] *
index : int *
count : int -> unit
Parameters
-
buffer
-
Type:
System
Char
The character array from which data is read.
-
index
-
Type:
System
Int32
The index into buffer at which to begin reading.
-
count
-
Type:
System
Int32
The maximum number of characters to write.
See Also