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

Editor

Class

A custom form of a used to define the editors for the various options in the RadPivotFieldList.

Definition

Namespace:Telerik.Windows.Controls.FieldList

Assembly:Telerik.Windows.Controls.PivotFieldList.dll

Syntax:

C#
public abstract class Editor

Inheritance: objectEditor

Derived Classes: ClearFilterEditorClearTotalFormatEditorDialogEditorReloadDataEditorRemoveEditorSetAggregateEditorSetTotalFormatEditorSortEditor...

Constructors

Initializes a new instance of the Editor class.

C#
protected Editor(ICommand command)
Parameters:commandICommand

Command triggering the editing.

Properties

Gets the ICommand triggering the editing.

C#
public ICommand Command { get; }

Methods

Determines if the editing can occur.

C#
protected virtual bool CanExecute(object sender, object parameter)
Parameters:senderobject

The sender.

parameterobject

The parameter.

Returns:

bool

Handles editing execution. Changes properties of the .

C#
protected abstract void Execute(object sender, object parameter)
Parameters:senderobject

The sender.

parameterobject

The parameter.