TableRow::HorizontalAlign Property

 

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

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property HorizontalAlign HorizontalAlign {
	virtual HorizontalAlign get();
	virtual void set(HorizontalAlign value);
}

Property Value

Type: System.Web.UI.WebControls::HorizontalAlign

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

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.

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

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: