Class EditorBaseElement
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
[RadToolboxItem(false)]
public abstract class EditorBaseElement : RadEditorElement, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IComponent, IDisposable, IBindableComponent, ISupportDrag, ISupportDrop, IShortcutProvider, IStylableElement, IStylableNode, IInputEditor, IValueEditor, ISupportInitialize
Constructors
EditorBaseElement()
Declaration
protected EditorBaseElement()
Fields
EditorHandler
originalValue
Declaration
protected object originalValue
Field Value
System.Object
|
Properties
DefaultValue
Declaration
public object DefaultValue { get; set; }
Property Value
System.Object
|
EditorElement
EditorManager
Declaration
public IEditorManager EditorManager { get; set; }
Property Value
IEditorManager
|
Implements
EditorType
Declaration
public virtual string EditorType { get; }
Property Value
System.String
|
Focusable
Declaration
public virtual bool Focusable { get; set; }
Property Value
System.Boolean
|
IsEnabled
Declaration
public bool IsEnabled { get; }
Property Value
System.Boolean
|
IsModified
Declaration
public virtual bool IsModified { get; }
Property Value
System.Boolean
|
Implements
IsMouseCaptured
Declaration
public bool IsMouseCaptured { get; }
Property Value
System.Boolean
|
IsNestedEditor
Gets whether the editor is instantiated on demand or is always availabele. Example: GridBooleanCellElement and GridViewBooleanColumn.
Declaration
public virtual bool IsNestedEditor { get; }
Property Value
System.Boolean
|
MaxValue
Declaration
public virtual object MaxValue { get; set; }
Property Value
System.Object
|
MinValue
Declaration
public virtual object MinValue { get; set; }
Property Value
System.Object
|
NullValue
Declaration
public object NullValue { get; set; }
Property Value
System.Object
|
SupportedType
Declaration
public virtual EditorSupportedType SupportedType { get; }
Property Value
EditorSupportedType
|
Value
Declaration
public virtual object Value { get; set; }
Property Value
System.Object
|
Implements
VisualMode
Methods
BeginEdit()
BeginInit()
Declaration
public virtual void BeginInit()
CaptureMouse()
Declaration
public bool CaptureMouse()
Returns
System.Boolean
|
EndEdit()
EndInit()
Declaration
public virtual void EndInit()
FindForm()
Declaration
protected virtual Form FindForm()
Returns
System.Windows.Forms.Form
|
FocusableElement()
Gets the VisualElement that must receive the focus, when the editor is invoked.
Declaration
public RadElement FocusableElement()
Returns
RadElement
|
Initialize()
Initializes the provider.
Declaration
public virtual void Initialize()
Initialize(Object)
Initializes the provider.
Declaration
public virtual void Initialize(object value)
Parameters
System.Object
value
value to be pre-loaded inside the initialized editor. |
Initialize(Object, Object)
Initializes the provider.
Declaration
public void Initialize(object owner, object value)
Parameters
System.Object
owner
the owner |
System.Object
value
value to be pre-loaded inside the initialized editor. |
Implements
InitializeFields()
OnFormat(ConvertEventArgs)
Declaration
protected virtual void OnFormat(ConvertEventArgs e)
Parameters
System.Windows.Forms.ConvertEventArgs
e
|
OnKeyDown(KeyEventArgs)
Declaration
protected override void OnKeyDown(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
|
Overrides
OnKeyUp(KeyEventArgs)
Declaration
protected override void OnKeyUp(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
|
Overrides
OnParse(ConvertEventArgs)
Declaration
protected virtual void OnParse(ConvertEventArgs e)
Parameters
System.Windows.Forms.ConvertEventArgs
e
|
OnQueryValue(CancelEventArgs)
Declaration
protected virtual void OnQueryValue(CancelEventArgs e)
Parameters
System.ComponentModel.CancelEventArgs
e
|
OnTextChanged(EventArgs)
Declaration
protected override void OnTextChanged(EventArgs e)
Parameters
System.EventArgs
e
|
Overrides
OnTextChanging(TextChangingEventArgs)
Declaration
protected override void OnTextChanging(TextChangingEventArgs e)
Parameters
TextChangingEventArgs
e
|
Overrides
OnValidated(EventArgs)
Declaration
protected virtual void OnValidated(EventArgs e)
Parameters
System.EventArgs
e
|
OnValidating(ValueChangingEventArgs)
Declaration
protected virtual void OnValidating(ValueChangingEventArgs e)
Parameters
ValueChangingEventArgs
e
|
OnValidationError(String)
Declaration
protected virtual void OnValidationError(string message)
Parameters
System.String
message
|
OnValidationError(ValidationErrorEventArgs)
Declaration
protected virtual void OnValidationError(ValidationErrorEventArgs args)
Parameters
ValidationErrorEventArgs
args
|
OnValueChanged(EventArgs)
Declaration
protected virtual void OnValueChanged(EventArgs args)
Parameters
System.EventArgs
args
|
OnValueChanging(ValueChangingEventArgs)
Declaration
protected virtual void OnValueChanging(ValueChangingEventArgs args)
Parameters
ValueChangingEventArgs
args
|
ProcessKeyDown(KeyEventArgs)
Declaration
public void ProcessKeyDown(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
|
ProcessKeyPress(KeyPressEventArgs)
Declaration
public void ProcessKeyPress(KeyPressEventArgs e)
Parameters
System.Windows.Forms.KeyPressEventArgs
e
|
ProcessKeyUp(KeyEventArgs)
Declaration
public void ProcessKeyUp(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
|
ProcessMouseDown(MouseEventArgs)
Declaration
public void ProcessMouseDown(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
|
ProcessMouseEnter(EventArgs)
Declaration
public void ProcessMouseEnter(EventArgs e)
Parameters
System.EventArgs
e
|
ProcessMouseLeave(EventArgs)
Declaration
public void ProcessMouseLeave(EventArgs e)
Parameters
System.EventArgs
e
|
ProcessMouseMove(MouseEventArgs)
Declaration
public void ProcessMouseMove(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
|
ProcessMouseUp(MouseEventArgs)
Declaration
public void ProcessMouseUp(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
|
ProcessMouseWheel(MouseEventArgs)
Declaration
public void ProcessMouseWheel(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
|
ReleaseMouseCapture()
Declaration
public void ReleaseMouseCapture()
Validate()
Declaration
public virtual bool Validate()
Returns
System.Boolean
|
Implements
ValidateCore()
Declaration
protected virtual void ValidateCore()
Events
Format
Declaration
public event ConvertEventHandler Format
Event Type
System.Windows.Forms.ConvertEventHandler
|
Parse
Declaration
public event ConvertEventHandler Parse
Event Type
System.Windows.Forms.ConvertEventHandler
|
QueryValue
Declaration
public event CancelEventHandler QueryValue
Event Type
System.ComponentModel.CancelEventHandler
|
Validated
Declaration
public event EventHandler Validated
Event Type
System.EventHandler
|
Implements
Validating
Declaration
public event CancelEventHandler Validating
Event Type
System.ComponentModel.CancelEventHandler
|
Implements
ValidationError
Occurs when internally the editor detects an error or when the Validating event fails.
Declaration
public event ValidationErrorEventHandler ValidationError
Event Type
ValidationErrorEventHandler
|
Implements
ValueChanged
Declaration
public event EventHandler ValueChanged
Event Type
System.EventHandler
|
Implements
ValueChanging
Declaration
public event ValueChangingEventHandler ValueChanging
Event Type
ValueChangingEventHandler
|