Using the Process Analyst > Process Analyst for Developers > Automation Model > ICursors.RemoveAll [Method]

ICursors.RemoveAll [Method]

Removes every cursor from the collection.

Defined As

Execution Result

If the function succeeds the return value will be Success. If an unexpected error occurs, the return value will be GeneralFailure.

Calling Syntax

This example assumes there is a valid Cursors object to be passed into the example methods.

[VBA]

Sub Example(cursors As Object)
cursors.RemoveAll
End Sub

[Cicode]

FUNCTION Example(OBJECT hCursors)
_ObjectCallMethod(hCursors, "RemoveAll");
End Sub