XPTable.Models.ColumnModel.GetCellEditor C# (CSharp) Method

GetCellEditor() public method

Gets the ICellEditor for the Column at the specified index in the ColumnModel
public GetCellEditor ( int column ) : ICellEditor
column int The index of the Column in the ColumnModel for /// which an ICellEditor will be retrieved
return ICellEditor
        public ICellEditor GetCellEditor(int column)
        {
            if (column < 0 || column >= this.Columns.Count)
            {
                return null;
            }

            //
            if (this.Columns[column].Editor != null)
            {
                return this.Columns[column].Editor;
            }

            return this.GetCellEditor(this.Columns[column].GetDefaultEditorName());
        }

Same methods

ColumnModel::GetCellEditor ( string name ) : ICellEditor