RadGrid for ASP.NET

RadGrid Send comments on this topic.
TableLayout Property
See Also 
Telerik.WebControls Namespace > GridTableView Class : TableLayout Property


Gets or sets a string that indicates whether the table layout is fixed.   

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Overridable Property TableLayout As GridTableLayout
Visual Basic (Usage)Copy Code
Dim instance As GridTableView
Dim value As GridTableLayout
 
instance.TableLayout = value
 
value = instance.TableLayout
C# 
public virtual GridTableLayout TableLayout {get; set;}

Return Value

A GridTableLayout value, indicating the table layout type. The default value is GridTableLayout.Fixed.

Remarks

The value of the TableLayout property is a string that specifies or receives one of the following GridTableLayout enumeration values:

AutoColumn width is set by the widest unbreakable content in the column cells.
Fixed Default. Table and column widths are set either by the sum of the widths on the GridTableView.Columns objects or, if these are not specified, by the width of the first row of cells. If no width is specified for the table, it renders by default with width=100%.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also