Jump to content

wpMoveObject

From EDM2

This instance method is called to move the object to a different location.

Syntax

_wpMoveObject(somSelf, Folder)

Parameters

somSelf (WPObject *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPObject.
Folder (WPFolder *) - input
Pointer to a Folder object.
A pointer to a Folder object into which to move this object. This pointer can be determined by issuing a call to wpclsQueryFolder.

Returns

rc (BOOL) - returns
Success indicator.
TRUE: Successful completion.
FALSE: Error occurred.

Usage

This method can be called at any time in order to move an object to a new location.

How to Override

This method is generally not overridden except by storage classes. The parent should be called last unless special actions need to take place when an object is moved.

Related Methods