Jump to content

TREEITEMDESC

From EDM2
Revision as of 13:12, 21 February 2020 by Ak120 (talk | contribs) (Created page with "Structure that contains icons and bit maps used to represent the state of an expanded or collapsed parent item in the tree name view of a container control. typedef struct _T...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains icons and bit maps used to represent the state of an expanded or collapsed parent item in the tree name view of a container control.

typedef struct _TREEITEMDESC {
  HBITMAP      hbmExpanded;    /*  Expanded bit-map handle. */
  HBITMAP      hbmCollapsed;   /*  Collapsed bit-map handle. */
  HPOINTER     hptrExpanded;   /*  Expanded icon handle. */
  HPOINTER     hptrCollapsed;  /*  Collapsed icon handle. */
} TREEITEMDESC;

typedef TREEITEMDESC *PTREEITEMDESC;