Performs the given operation and places it on the stack.
[Visual Basic 6.0] Sub Do(
ByVal operation As IOperation _
)
[Visual Basic .NET] Public Sub Do ( _ ByVal operation As IOperation _ )
[C#] public void Do ( IOperation operation );
[Java] public void do ( IOperation operation ) throws IOException, AutomationException
[C++] HRESULT Do( IOperation* operation );
The Do method performs the specified operation, and if successful places the operation on the OperationStack at the index of the 'current' operation on the OperationStack.
Regardless of whether the Do method performs the specified operation successfully, any operations above the 'current' operation on the OperationStack will be removed from the OperationStack.