AutoGenerateColumns Property (Table)
In This Topic
Gets or sets whether to generate the columns automatically based on the data source.
Syntax
'Declaration
Public Property AutoGenerateColumns As Boolean
'Usage
Dim instance As Table
Dim value As Boolean
instance.AutoGenerateColumns = value
value = instance.AutoGenerateColumns
public bool AutoGenerateColumns {get; set;}
Property Value
true
if the table generate the columns automatically based on the data source; otherwise,
false
. The default is
true
.
See Also