Structure that contains information about the direct editing of container text. The information specified for this structure depends on the container notification code or message with which it is used. The differences are specified in the following field descriptions. The applicable notification codes and message are:

typedef struct _CNREDITDATA {  ULONG           cb;          /*  Structure size. */
  HWND            hwndCnr;     /*  Container window handle. */
  PRECORDCORE     pRecord;     /*  Pointer to a RECORDCORE data structure, or NULL. */
  PFIELDINFO      pFieldInfo;  /*  Pointer to a FIELDINFO data structure, or NULL. */
  PSZ            *ppszText;    /*  Pointer to a PSZ text string. */
  ULONG           cbText;      /*  Number of bytes in the text string. */
  ULONG           id;          /*  ID of the window to be edited. */
} CNREDITDATA;

typedef   CNREDITDATA   * PCNREDITDATA ;


[Back] [Next]