XTextStyle String Property. The text style as a string. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

 

Type Default Read Only Description
[C#]string

[Visual Basic]
String
Variable No The text style as a string.

 

   

Notes
 

A string representation of the text style.

This covers all the properties of this class and can be sued for a save and restore stack.

 

   

Example
 

The following code.

[C#]
XTextStyle ts = new XTextStyle();
ts.String = "24.5 10 0 0 0 0 0";
Response.Write("Size = " + ts.Size.ToString() + "<br>");
Response.Write("Indent = " + ts.Indent.ToString());

[Visual Basic]
Dim ts As XTextStyle = New XTextStyle()
ts.String = "24.5 10 0 0 0 0 0"
Response.Write("Size = " + ts.Size.ToString() + "<br>")
Response.Write("Indent = " + ts.Indent.ToString())

Produces the following output.

Size = 24.5
Indent = 10