Interface IValueEditor
This interface supports the editor infrastructure of the RadGridView.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IValueEditor
Properties
Value
Declaration
object Value { get; set; }
Property Value
System.Object
|
Methods
BeginEdit()
Declaration
void BeginEdit()
EndEdit()
Declaration
bool EndEdit()
Returns
System.Boolean
|
Initialize(Object, Object)
Declaration
void Initialize(object owner, object value)
Parameters
System.Object
owner
|
System.Object
value
|
Validate()
Declaration
bool Validate()
Returns
System.Boolean
|
Events
Validated
Occurs when the editor is finished validating the value.
Declaration
event EventHandler Validated
Event Type
System.EventHandler
|
Validating
Occurs when the editor is validating the value.
Declaration
event CancelEventHandler Validating
Event Type
System.ComponentModel.CancelEventHandler
|
ValidationError
Occurs when internally the editor detects an error or when the Validating event fails.
Declaration
event ValidationErrorEventHandler ValidationError
Event Type
ValidationErrorEventHandler
|
ValueChanged
Occurs when the value of the editor changes.
Declaration
event EventHandler ValueChanged
Event Type
System.EventHandler
|
ValueChanging
Occurs when the editor value is being changed. Cancelable event.
Declaration
event ValueChangingEventHandler ValueChanging
Event Type
ValueChangingEventHandler
|