ICursors.RemoveAll [Method]
- Last UpdatedJul 18, 2023
- 1 minute read
Removes every cursor from the collection.
Defined As
-
[VBA] RemoveAll()
-
[Cicode] RemoveAll()
-
[C++] HRESULT RemoveAll()
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