ListWidget::GetFirstListItem
Defined in:
Returns the first item in a list.
C4Widgets.h
Prototype
Widget *GetFirstListItem(void) const;
Description
The GetFirstListItem
function returns a pointer to the first item in a list. If the list is empty, then the return value is nullptr
. The remaining items in a list can be iterated by calling the Tree::GetNextSubnode
function for the returned widget.
See Also