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)
Initializes a new instance of the EditActionEventArgs
class.
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
Gets the IEditAction that is executing.
View
Gets the IEditorView in which the Action is executing.
public IEditorView View { get; }
Property Value
- IEditorView:
The IEditorView in which the Action is executing.