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