Jump to content

CNRDRAWITEMINFO

From EDM2
Revision as of 04:15, 19 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the container item being drawn. This structure is used with the WM_DRAWITEM (in Container Controls) message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _CNRDRAWITEMINFO { PRECORDCORE pRecord; Pointer to the RECORDCORE structure for the record being drawn.: PFIELDINFO pFieldInfo; /* Pointer to the FIELDINFO structure for the container column be...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the container item being drawn. This structure is used with the WM_DRAWITEM (in Container Controls) message only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _CNRDRAWITEMINFO {
  PRECORDCORE     pRecord;     /*  Pointer to the RECORDCORE structure for the record being drawn. */
  PFIELDINFO      pFieldInfo;  /*  Pointer to the FIELDINFO structure for the container column being drawn in the details view. */
} CNRDRAWITEMINFO;

typedef CNRDRAWITEMINFO *PCNRDRAWITEMINFO;