BrightIdeasSoftware.ObjectListView.MakeDefaultCellEditor C# (CSharp) Méthode

MakeDefaultCellEditor() protected méthode

Return a TextBox that can be used as a default cell editor.
protected MakeDefaultCellEditor ( OLVColumn column ) : Control
column OLVColumn What column does the cell belong to?
Résultat Control
        protected virtual Control MakeDefaultCellEditor(OLVColumn column)
        {
            TextBox tb = new TextBox();
            if (column.AutoCompleteEditor)
                this.ConfigureAutoComplete(tb, column);
            return tb;
        }
ObjectListView