RtfTextWriter
Write Method (
Char
, Int32, Int32)
|
Writes a subarray of characters 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 Write(
char[] buffer,
int index,
int count
)
Public Overrides Sub Write (
buffer As Char(),
index As Integer,
count As Integer
)
public:
virtual void Write(
array<wchar_t>^ buffer,
int index,
int count
) override
abstract Write :
buffer : char[] *
index : int *
count : int -> unit
override Write :
buffer : char[] *
index : int *
count : int -> unit
Parameters
-
buffer
-
Type:
System
Char
The character array to write data from.
-
index
-
Type:
System
Int32
Starting index in the buffer.
-
count
-
Type:
System
Int32
The number of characters to write.
See Also