ElementBuilderCreateTextRun Method (Byte, Font, Double) |
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,
Font font,
double font_sz
)
Public Function CreateTextRun (
text_data As Byte(),
font As Font,
font_sz As Double
) As Element
public:
virtual Element^ CreateTextRun(
[InAttribute] array<unsigned char>^ text_data,
[InAttribute] Font^ font,
[InAttribute] double font_sz
) sealed
function CreateTextRun(text_data, font, font_sz);
Parameters
- text_data
- Type: SystemByte
the text_data
- font
- Type: pdftron.PDFFont
font for the text run
- font_sz
- Type: SystemDouble
size of the font
Return Value
Type:
Element the element
Remarks a text run can be created only within a text block
See Also