asp.net.ph

Formview.CaptionAlign Property

System.Web.UI.WebControls Namespace   Formview Class


.NET Framework version 2.0

Returns or sets the horizontal or vertical position of the HTML caption element in a GridView control. This property is provided to make the control more accessible to users of assistive technology devices.

Syntax


Inline <asp:gridview captionalign = enumValue ... >
Script Formview.CaptionAlign [ = enumValue ]

Property Value


enumValue One of the TableCaptionAlign values.

The property is read/write with a default value of NotSet.

Remarks

Use the CaptionAlign property to specify the horizontal or vertical position of the HTML caption element in a GridView control. This property is provided to make the control more accessible to users of assistive technology devices.

This property is set using one of the TableCaptionAlign enumeration values. The following table lists the possible values.

Value Description
TableCaptionAlign.Bottom The caption element is aligned with the bottom of the table.
TableCaptionAlign.Left The caption element is aligned with the left side of the table.
TableCaptionAlign.NotSet The caption element's alignment is not set.
TableCaptionAlign.Right The caption element is aligned with the right side of the table.
TableCaptionAlign.Top The caption element is aligned with the top of the table.

NOTE: When this property is set to TableCaptionAlign.NotSet, the default value of the browser is used.

Additional accessibility support for the GridView control is provided by the Caption property. Use the Caption property to specify the text to render in an HTML caption element in a GridView control.

Example

The following sample illustrates using the CaptionAlign property.

<asp:gridview id = "EmployeeGridView"
   datasourceid = "EmployeeSource"
   allowpaging
   datakeynames = "EmployeeID"
   caption = "Employee Details"
   captionalign = "Left"  
   runat = "server">
See Also

Formview Members   Caption Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph