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
|