In This Article

EditActionEventArgs Class

Provides arguments for an IEditAction that executes within an IEditorView.

public class EditActionEventArgs : CancelEventArgs
Inheritance:
object EventArgs CancelEventArgs 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.

public IEditAction Action { get; }

Property Value

IEditAction:

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.

Inherited Members