Skip to main content

PrintAppearanceObject.TextVerticalAlignment Property

Gets the vertical alignment of the appearance object’s text.

Namespace: DevExpress.PivotGrid.Printing

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(VertAlignment.Default)]
public virtual VertAlignment TextVerticalAlignment { get; set; }

Property Value

Type Default Description
VertAlignment Default

A VertAlignment enumeration value, specifying the vertical alignment of the text.

Available values:

Name Description
Default

Places the text to its default position. The default position is in the center of an object.

Top

Places the text to the top of an object.

Center

Centers the text within an object.

Bottom

Places the text to the bottom of an object.

Remarks

The vertical alignment of an AppearanceObject‘s text is specified by the PrintTextOptions.VAlignment property. Text options can be accessed using the PrintAppearanceObject.TextOptions property.

See Also