TableWidget::GetTableItem
Defined in:
Returns the table item with a specific index.
C4Widgets.h
Prototype
Widget *GetTableItem(int32 index) const;
Parameters
index |
The index of the table item to return, where the first table item has the index 0. |
Description
The GetTableItem
function returns a pointer to the table item whose zero-based index is specified by the index
parameter. If the value of index
is greater than or equal to the number of items in the table (or if index
is negative), then the return value is nullptr
.
See Also