-@subsubsection xrc_wximagelist wxImageList
-
-The imagelist can be used as a child object for the following classes:
- - @ref xrc_wxchoicebook
- - @ref xrc_wxlistbook
- - @ref xrc_wxlistctrl
- - @ref xrc_wxnotebook
- - @ref xrc_wxtreebook
- - @ref xrc_wxtreectrl
-
-The available properties are:
-
-@beginTable
-@hdr3col{property, type, description}
-@row3col{bitmap, @ref overview_xrcformat_type_bitmap,
- Adds a new image by keeping its optional mask bitmap (see below).}
-@row3col{mask, @ref overview_xrcformat_type_bool,
- If masks should be created for all images (default: true).}
-@row3col{size, @ref overview_xrcformat_type_size,
- The size of the images in the list (default: the size of the first bitmap).}
-@endTable
-
-Example:
-@code
-<imagelist>
- <size>32,32</size>
- <bitmap stock_id="wxART_QUESTION"/>
- <bitmap stock_id="wxART_INFORMATION"/>
-</imagelist>
-@endcode
-
-In the specific case of the @ref xrc_wxlistctrl, the tag can take the name
-@c \<imagelist-small\> to define the 'small' image list, related to the flag
-@c wxIMAGE_LIST_SMALL (see wxListCtrl documentation).
-
-