Version

Editor Property (UltraGridCell)

Use this property to set the editor that will be used for rendering and editing the cell. This property returns null if it wasn't set to an editor before. By default, UltraGridColumn.Editor property off the associated column is used for rendering and editing the cell.
Syntax
'Declaration
 
Public Property Editor As Infragistics.Win.EmbeddableEditorBase
public Infragistics.Win.EmbeddableEditorBase Editor {get; set;}
Example
Following code sets Editor property of a column and then overrides the Editor for a cell in the same column.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

    Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
        Dim column As UltraGridColumn = Me.UltraGrid1.DisplayLayout.Bands(0).Columns(0)

        ' You can set the editor that cells associated with a column will use by setting
        ' the column's Editor property.
        column.Editor = New EditorWithText()

        ' You can also override that column setting for an individual cell by setting
        ' that cell's editor property.
        Me.UltraGrid1.Rows(0).Cells(column).Editor = New DateTimeEditor()
        Me.UltraGrid1.Rows(1).Cells(column).Editor = New CheckEditor()
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

		private void button1_Click(object sender, System.EventArgs e)
		{
			UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns[0];

			// You can set the editor that cells associated with a column will use by setting
			// the column's Editor property.
			column.Editor = new EditorWithText( );
			
			// You can also override that column setting for an individual cell by setting
			// that cell's editor property.
			this.ultraGrid1.Rows[0].Cells[column].Editor = new DateTimeEditor( );
			this.ultraGrid1.Rows[1].Cells[column].Editor = new CheckEditor( );
		}
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