IHtmlGeneratorAddText Method (Char, Int32, Int32) |
Adds plain text to the html files, replacing special characters with html entities.
Linebreaks and whitespaces aren't replaced.
Namespace:
Aspose.Slides.Export
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 21.4.0.0 (21.4)
Syntaxvoid AddText(
char[] text,
int startIndex,
int length
)
Sub AddText (
text As Char(),
startIndex As Integer,
length As Integer
)
void AddText(
array<wchar_t>^ text,
int startIndex,
int length
)
abstract AddText :
text : char[] *
startIndex : int *
length : int -> unit
Parameters
- text
- Type: SystemChar
Text to add. - startIndex
- Type: SystemInt32
Start index of the portion to add. - length
- Type: SystemInt32
Length of the portion to add.
See Also