Jump to content

FIELDINFO

From EDM2
Revision as of 04:11, 19 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about column data in the details view of the container control. The details view displays each FIELDINFO structure as a column of data that contains specific information about each container record. For example, one FIELDINFO structure, or column, might contain icons or bit maps that represent each container record. Another FIELDINFO structure might contain the date or time that each container record was created. == Type == struct =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about column data in the details view of the container control. The details view displays each FIELDINFO structure as a column of data that contains specific information about each container record. For example, one FIELDINFO structure, or column, might contain icons or bit maps that represent each container record. Another FIELDINFO structure might contain the date or time that each container record was created.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _FIELDINFO {
  ULONG                   cb;              /*  Structure size. */
  ULONG                   flData;          /*  Data attributes. */
  ULONG                   flTitle;         /*  Column heading attributes. */
  PVOID                   pTitleData;      /*  Column heading data. */
  ULONG                   offStruct;       /*  Structure offset. */
  PVOID                   pUserData;       /*  Pointer to user data. */
  struct _FIELDINFO      *pNextFieldInfo;  /*  Pointer to the next linked FIELDINFO data structure. */
  ULONG                   cxWidth;         /*  Column width. */
} FIELDINFO;

typedef FIELDINFO *PFIELDINFO;