ElementBuilderCreateTextRun Method (String, Font, Double) |
Create a text run using the given font.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Element CreateTextRun(
string text_data,
Font font,
double font_sz
)
Public Function CreateTextRun (
text_data As String,
font As Font,
font_sz As Double
) As Element
public:
virtual Element^ CreateTextRun(
[InAttribute] String^ text_data,
[InAttribute] Font^ font,
[InAttribute] double font_sz
) sealed
function CreateTextRun(text_data, font, font_sz);
Parameters
- text_data
- Type: SystemString
the text_data, must contain only valid ASCII characters
- font
- Type: pdftron.PDFFont
the font
- font_sz
- Type: SystemDouble
the font_sz
Return Value
Type:
Element the element
Remarks a text run can be created only within a text block
See Also