Version

Editor Property (UltraListViewColumnBase)

Gets/sets the Infragistics.Win.EmbeddableEditorBase-derived editor which renders the data for the cells of this UltraListViewColumnBase.
Syntax
'Declaration
 
Public Property Editor As Infragistics.Win.EmbeddableEditorBase
public Infragistics.Win.EmbeddableEditorBase Editor {get; set;}
Remarks

The Editor and EditorControl properties both dictate which embeddable editor will be used to render data for the column; the EditorControl is exposed to provide a way to specify an editor through the designer. In the case where both properties are set to different values, the Editor property takes precedence.

Editing is not supported for sub-items.

When the Editor and EditorControlproperties are not specifically set, the Infragistics.Win.EmbeddableEditorBase-derived editor most appropriate for the DataType of the column is automatically assigned. The following table lists the default editors used by the UltraListView control, cross-referenced by the data types to which they are associated:

DataType Editor
DateTime Infragistics.Win.DateTimeEditor
Color Infragistics.Win.ColorPickerEditor
Boolean, CheckState Infragistics.Win.CheckEditor
Image Infragistics.Win.EmbeddableImageRenderer
Other When the ValueList property is set, an Infragistics.Win.EditorWithCombo is used; in all other cases, the Infragistics.Win.EditorWithText is used.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also