TableRow.HorizontalAlign Property

Definition

Gets or sets the horizontal alignment of the contents in the row.

C#
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }
C#
public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }

Property Value

One of the HorizontalAlign values. The default value is NotSet.

Attributes

Examples

The following example demonstrates how to use the HorizontalAlign property. For a complete, working code example, see the TableRow class overview topic.

C#
// Create a TableItemStyle object that can be
// set as the default style for all cells
// in the table.
TableItemStyle tableStyle = new TableItemStyle();
tableStyle.HorizontalAlign = HorizontalAlign.Center;
tableStyle.VerticalAlign = VerticalAlign.Middle;
tableStyle.Width = Unit.Pixel(100);

Remarks

Use the HorizontalAlign property to specify the horizontal alignment of the contents of the row. The following table lists the possible values.

Horizontal Alignment Description
NotSet The horizontal alignment is not set.
Left The contents of the row are left justified.
Center The contents of the row are centered.
Right The contents of the row are right justified.
Justify The contents of the row are uniformly spread out and aligned with both the left and right margins.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also