wpSetupCell - Syntax

This instance method is called to initialize a cell.

#define INCL_WINWORKPLACE
#include <os2.h>

WPPalette     *somSelf;    /*  Pointer to the object on which the method is being invoked. */
PVOID          pCellData;  /*  Pointer to the data to be stored. */
ULONG          cb;         /*  Size of the data to be stored. */
ULONG          x;          /*  X-coordinate of the cell to be set up. */
ULONG          y;          /*  Y-coordinate of the cell to be set up. */
BOOL           rc;         /*  Success indicator. */

rc = _wpSetupCell(somSelf, pCellData, cb,
       x, y);


[Back: wpSetupCell]
[Next: wpSetupCell Parameter - somSelf]