ListWidget::GetLastListItem
Defined in:
Returns the last item in a list.
C4Widgets.h
Prototype
Widget *GetLastListItem(void) const;
Description
The GetLastListItem
function returns a pointer to the last 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::GetPreviousSubnode
function for the returned widget.
See Also