TableRow::VerticalAlign Property

 

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

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

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

Property Value

Type: System.Web.UI.WebControls::VerticalAlign

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

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

Vertical Alignment

Description

NotSet

The vertical alignment is not set.

Top

The contents of the row are aligned with the top of the row.

Middle

The contents of the row are aligned with the middle of the row.

Bottom

The contents of the row are aligned with the bottom of the row.

The following example demonstrates how to use the VerticalAlign 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: