New to Telerik UI for WinFormsStart a free 30-day trial

ICellEditor

Interface

Represents a cell editor.

Definition

Namespace:Telerik.WinForms.Controls.Spreadsheet.Worksheets

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

C#
public interface ICellEditor

Derived Classes: FormulaBarFunctionEditorCellEditorCellEditorBase

Properties

Gets or sets the text.

C#
string Text { get; set; }
Property Value:

The text value.

Methods

Focuses this instance.

C#
bool Focus()
Returns:

bool

True if succeed.

Selects all.

C#
void SelectAll()

Events

Occurs when the instance loses focus.

C#
event EventHandler LostFocus

Occurs when the selection is changed].

C#
event EventHandler SelectionChanged

Occurs when the text is changed.

C#
event EventHandler TextChanged