XTextStyle Bold Property. Whether to apply a synthetic bold effect. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

 

Type Default Read Only Description
[C#] bool

[Visual Basic]
Boolean
false No Whether to apply a synthetic bold effect.

 

   

Notes
 

This property determines whether a synthetic bold effect is applied to text.

It is generally better to specify a bold typeface rather than synthesize a bold effect using the current typeface. However under some circumstances this may not be possible and you may prefer to apply a synthetic bold effect.

 

   

Example
 

In this example we add some bold text to a document.

[C#]
Doc theDoc = new Doc();
string theText;
theText = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur.";
theDoc.Rect.Inset(20, 40);
theDoc.TextStyle.Size = 96;
theDoc.TextStyle.Bold = true;
theDoc.AddText(theText);
theDoc.Save(Server.MapPath("stylebold.pdf"));
theDoc.Clear();

[Visual Basic]
Dim theDoc As Doc = New Doc()
Dim theText As String
theText = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur."
theDoc.Rect.Inset(20, 40)
theDoc.TextStyle.Size = 96
theDoc.TextStyle.Bold = True
theDoc.AddText(theText)
theDoc.Save(Server.MapPath("stylebold.pdf"))
theDoc.Clear()


stylebold.pdf