In This Article

EditActionEventArgs Class

Provides arguments for an IEditAction that executes within an IEditorView.

public class EditActionEventArgs : CancelRoutedEventArgs
Inheritance:
object EventArgs RoutedEventArgs CancelRoutedEventArgs object

Constructors

EditActionEventArgs(IEditorView, IEditAction)

Provides arguments for an IEditAction that executes within an IEditorView.

public EditActionEventArgs(IEditorView view, IEditAction action)
Parameter Type Description
view IEditorView

The IEditorView in which the Action is executing.

action IEditAction

The IEditAction that is executing.

Properties

Action

The IEditAction that is executing.

public IEditAction Action { get; }

Property Value

IEditAction

View

The IEditorView in which the Action is executing.

public IEditorView View { get; }

Property Value

IEditorView

Inherited Members

Extension Methods