In This Article

IMacroAction Interface

Provides the base requirements for an IEditAction that contains IEditAction objects that can be executed in a macro.

public interface IMacroAction : IEditAction, IKeyedObject

Properties

IsEmpty

Gets whether the macro action is empty and doesn't currently contain any child IEditAction objects.

bool IsEmpty { get; }

Property Value

bool:

true if the macro action is empty and doesn't currently contain any child IEditAction objects; otherwise, false.

Methods

Add(IEditAction)

Adds the specified IEditAction to the macro action.

void Add(IEditAction action)
Parameter Type Description
action IEditAction

The IEditAction to add.

Inherited Members