WinDestroyObject: Difference between revisions
Appearance
mNo edit summary |
|||
Line 3: | Line 3: | ||
=== Parameters === | === Parameters === | ||
; objHandle - [[ | ; objHandle - [[HOBJECT]] - output : Handle to a Workplace object. | ||
=== Constants === | === Constants === | ||
Line 9: | Line 9: | ||
=== Returns === | === Returns === | ||
True if successful, false if not successful. | True if successful, false if not successful. | ||
* [[ | * [[TRUE]] | ||
* [[ | * [[FALSE]] | ||
=== Define (C/C++) === | === Define (C/C++) === | ||
INCL_WINWORKPLACE | INCL_WINWORKPLACE | ||
=== Calling conversion === | === Calling conversion === | ||
Line 24: | Line 20: | ||
=== Example Code === | === Example Code === | ||
... | ... | ||
HOBJECT objHndl; | |||
BOOL rc; | |||
... | ... | ||
rc = WinDestroyObject (objHndl); | rc = WinDestroyObject (objHndl); | ||
Line 31: | Line 27: | ||
=== Related Functions === | === Related Functions === | ||
[[ | *[[WinCreateObject]] | ||
[[ | *[[WinSetObjectData]] | ||
[[Category: | [[Category:Win]] |
Revision as of 22:10, 10 November 2016
WinDestroyObject
- WinDestroyObject (objHndle)
- Dispose of a class from the Workplace Shell.
Parameters
- objHandle - HOBJECT - output
- Handle to a Workplace object.
Constants
Returns
True if successful, false if not successful.
Define (C/C++)
INCL_WINWORKPLACE
Calling conversion
Example Code
... HOBJECT objHndl; BOOL rc; ... rc = WinDestroyObject (objHndl); ...