SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.name  property

The name of Column

Although not occur an error, it should start with a letter or underscore without leaving any blank in the middle, and the name of each column within one grid must exist as the only value. 

Getter
function name(): String
Setter
function setName(value: String)
Code -1
    var column = grid.columnByName('column1');
    if (column) {
        column.setResizable(false);
    }
See Also
tag
displayText
GridBase.columnByName
GridColumn
ColumnHeader
Examples
Hello Grid
Column Grouping