Jump to content

WinSetObjectData: Difference between revisions

From EDM2
m Redirected page to OS2 API:PMI:WinSetObjectData
Ak120 (talk | contribs)
No edit summary
Line 1: Line 1:
#REDIRECT [[OS2 API:PMI:WinSetObjectData]]
== WinSetObjectData ==
; WinSetObjectData(objectHndl, setupString) : Set the data on a workplace shell object.
 
=== Parameters ===
; objectHndl - [[HOBJECT]] - input : The object handle.
; setupString - [[PSZ]] - input : Object specific parameters.
 
=== Constants ===
 
=== Returns ===
This function returns a [[BOOL]] with the values of:
* [[TRUE]]
* [[FALSE]]
 
=== Define (C/C++) ===
INCL_WINWORKPLACE
 
=== Calling conversion ===
[[Cdecl32]]
 
=== Example Code ===
...
HOBJECT  hobj;
PSZ      setupString;
BOOL    rc;
...
rc = WinSetObjectData (hobj, setupString);
...
 
=== Related Functions ===
*[[WinCreateObject]]
*[[WinDestroyObject]]
 
[[Category:Win]]

Revision as of 22:13, 10 November 2016

WinSetObjectData

WinSetObjectData(objectHndl, setupString)
Set the data on a workplace shell object.

Parameters

objectHndl - HOBJECT - input
The object handle.
setupString - PSZ - input
Object specific parameters.

Constants

Returns

This function returns a BOOL with the values of:

Define (C/C++)

INCL_WINWORKPLACE

Calling conversion

Cdecl32

Example Code

...
HOBJECT  hobj;
PSZ      setupString;
BOOL     rc;
...
rc = WinSetObjectData (hobj, setupString);
...

Related Functions