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.

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 ;


[Back] [Next]