Class Editor
A custom form of a CommandBinding used to define the editors for the various options in the RadPivotFieldList.
Inheritance
Namespace: Telerik.Windows.Controls.FieldList
Assembly: Telerik.Windows.Controls.PivotFieldList.dll
Syntax
public abstract class Editor : Object
Constructors
Editor(ICommand)
Initializes a new instance of the Editor class.
Declaration
protected Editor(ICommand command)
Parameters
System.Windows.Input.ICommand
command
Command triggering the editing. |
Properties
Command
Gets the System.Windows.Input.ICommand triggering the editing.
Declaration
public ICommand Command { get; }
Property Value
System.Windows.Input.ICommand
|
Methods
CanExecute(Object, Object)
Determines if the editing can occur.
Declaration
protected virtual bool CanExecute(object sender, object parameter)
Parameters
System.Object
sender
The sender. |
System.Object
parameter
The parameter. |
Returns
System.Boolean
|
Execute(Object, Object)
Handles editing execution. Changes properties of the Parameter.
Declaration
protected abstract void Execute(object sender, object parameter)
Parameters
System.Object
sender
The sender. |
System.Object
parameter
The parameter. |