ElementBuilderCreateTextRun Method (Byte) |
Create a new text run.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Element CreateTextRun(
byte[] text_data
)
Public Function CreateTextRun (
text_data As Byte()
) As Element
public:
virtual Element^ CreateTextRun(
[InAttribute] array<unsigned char>^ text_data
) sealed
function CreateTextRun(text_data);
Parameters
- text_data
- Type: SystemByte
the text_data, must contain only valid ASCII characters
Return Value
Type:
Element the element
Remarks a text run can be created only within a text block
you must set the current Font and font size before calling this function.
See Also