Moves content between two pointers to a destination specified by a third pointer.
Syntax
HRESULT Move( IMarkupPointer *pPointerSourceStart, IMarkupPointer *pPointerSourceFinish, IMarkupPointer *pPointerTarget );
Parameters
- pPointerSourceStart
- Address of an IMarkupPointer interface that specifies the start point of text to be moved.
- pPointerSourceFinish
- Address of an IMarkupPointer interface that specifies the end point of text to be moved.
- pPointerTarget
- Address of an IMarkupPointer interface that specifies the target point of insertion.
Return Value
Returns S_OK if successful, or an error code otherwise.
See Also
Copy