SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.isFixed  property

(Deprecated. Use fixed instead.


Return true if this column is fixed column. 

When DisplayOptions.fixedColumnCount is greater than 0, the column of which displayIndex is less than this value will be fixed, and this property value of column will become true. 

Getter
function isFixed(): Boolean
Code -1
    var column = grid.focusedColumn();
    if (column.isFixed()) {
        alert("This column is fixed.");
    }
See Also
fixed
fixedColumnCount
fixedRowCount
displayIndex
Examples
Fixed Columns