WpMoveObject: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:wpMoveObject}} 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 issu..." |
No edit summary |
||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
_wpMoveObject(somSelf, Folder) | _wpMoveObject(somSelf, Folder) | ||
==Parameters== | ==Parameters== |
Latest revision as of 23:31, 10 September 2025
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.