Class PdfFontStyle
Specifies style information applied to text.
Inheritance
System.Object
PdfFontStyle
Namespace: Syncfusion.Pdf.Graphics
Assembly: Syncfusion.Pdf.NET.dll
Syntax
public sealed class PdfFontStyle : Enum
Examples
//Create a new PDF document.
PdfDocument document = new PdfDocument();
//Add a page to the document.
PdfPage page = document.Pages.Add();
//Create PDF graphics for the page.
PdfGraphics graphics = page.Graphics;
//Create a new PDF font instance.
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12, PdfFontStyle.Bold);
//Draw string to PDF page.
graphics.DrawString("Hello World!", font, PdfBrushes.Black, PointF.Empty);
//Save the document.
document.Save("Output.pdf");
//Close the document.
document.Close(true);
'Create a new PDF document.
Dim document As New PdfDocument()
'Add a page to the document.
Dim page As PdfPage = document.Pages.Add()
'Create PDF graphics for the page.
Dim graphics As PdfGraphics = page.Graphics
'Create a new PDF font instance.
Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 12, PdfFontStyle.Bold)
'Draw string to PDF page.
graphics.DrawString("Hello World!", font, PdfBrushes.Black, PointF.Empty)
'Save the document.
document.Save("Output.pdf")
'Close the document.
document.Close(True)
Fields
Bold
Bold text.
Declaration
public const PdfFontStyle Bold
Field Value
Type |
---|
PdfFontStyle |
Italic
Italic text.
Declaration
public const PdfFontStyle Italic
Field Value
Type |
---|
PdfFontStyle |
Regular
Normal text.
Declaration
public const PdfFontStyle Regular
Field Value
Type |
---|
PdfFontStyle |
Strikeout
Strikeout text.
Declaration
public const PdfFontStyle Strikeout
Field Value
Type |
---|
PdfFontStyle |
Underline
Represents the underline text.
Declaration
public const PdfFontStyle Underline
Field Value
Type |
---|
PdfFontStyle |