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 ;


[Back] [Next]