Search
Table.AllowResizeColumns Property
See Also
 



Gets or sets a value indicating whether users are allowed to resize table columns.

 Syntax

C#  Copy Code

public virtual bool AllowResizeColumns { get; set; }

Visual Basic  Copy Code

Public Overridable Property AllowResizeColumns As Boolean

 Property Value

true to let users resize columns, or false otherwise. The default value is false.

 Remarks

A column can be resized by dragging its right border. If the ColType property of a column is set to ctAutoWidth, it is automatically reset to ctFixedWidth when the column is resized. Rightmost columns always fill all remaining space in their tables and cannot be resized.

 See Also