Back to Devexpress

PdfStringFormat.Alignment Property

officefileapi-devexpress-dot-pdf-dot-pdfstringformat-fb0adc66.md

latest2.9 KB
Original Source

PdfStringFormat.Alignment Property

Gets or sets the horizontal alignment of the string.

Namespace : DevExpress.Pdf

Assembly : DevExpress.Pdf.v25.2.Core.dll

NuGet Package : DevExpress.Pdf.Core

Declaration

csharp
public PdfStringAlignment Alignment { get; set; }
vb
Public Property Alignment As PdfStringAlignment

Property Value

TypeDescription
PdfStringAlignment

A PdfStringAlignment enumeration that specifies the horizontal alignment of the string.

|

Available values:

NameDescription
Near

The text is aligned near the layout.

| | Center |

The text is aligned in the center of the layout rectangle.

| | Far |

The text is aligned far from the original position of the layout rectangle.

|

Remarks

Use the PdfStringFormat.LineAlignment property to specify the vertical alignment of the string.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Alignment property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

pdf-document-api-generate-document-layout/CS/DocumentCreationAPI/Program.cs#L50

csharp
PdfStringFormat stringFormat = PdfStringFormat.GenericTypographic;
stringFormat.Alignment = PdfStringAlignment.Center;
stringFormat.LineAlignment = PdfStringAlignment.Center;

pdf-document-api-generate-document-layout/VB/DocumentCreationAPI/Program.vb#L51

vb
Dim stringFormat As PdfStringFormat = PdfStringFormat.GenericTypographic
stringFormat.Alignment = PdfStringAlignment.Center
stringFormat.LineAlignment = PdfStringAlignment.Center

See Also

PdfStringFormat Class

PdfStringFormat Members

DevExpress.Pdf Namespace