TableWidget::GetFirstTableItem
Defined in:
Returns the first item in a table.
C4Widgets.h
Prototype
Widget *GetFirstTableItem(void) const;
Description
The GetFirstTableItem
function returns a pointer to the first 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::GetNextSubnode
function for the returned widget.
See Also