Skip to main content
A newer version of this page is available. .

BaseLayoutItem.TextLocation Property

Gets or sets the item caption position.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v18.2.dll

Declaration

[DefaultValue(Locations.Default)]
[DXCategory("Text")]
[XtraSerializableProperty]
public virtual Locations TextLocation { get; set; }

Property Value

Type Default Description
Locations **Default**

A Locations value that specifies the item caption position.

Available values:

Name Description
Default

The same as the Locations.Top option.

Left

An element is located at the left edge of another element.

Right

An element is located at the right edge of another element.

Top

An element is located at the top edge of another element.

Bottom

An element is located at the bottom edge of another element.

Remarks

Use the BaseLayoutItem.Text property to set the layout item caption, and the TextLocation property to specify its position. Each layout item type interprets the TextLocation property values differently.

  • LayoutControlItem items place their caption blocks relative to controls hosted inside these items.

  • LayoutControlGroup items align their caption blocks along their sides.

  • TabbedControlGroup items use the TextLocation property to align tab headers along group sides.

The Locations.Default value is equal to Locations.Left if the Right-to-Left Layout mode is off, and Locations.Right otherwise.

See Also