int GetTableCellRingIndexFromValue (int panelHandle, int controlID, int begIndex, Point cell, int *index, const char *value);
Searches the list of values of a specified ring or combo-box cell of a table control and returns the index of the first item in the list with a value matching the specified value.
This function returns the index –1 if the value is not found.
Input | ||
Name | Type | Description |
panelHandle | integer | Specifier for a particular panel that is currently in memory. You obtain this handle from LoadPanel, NewPanel, or DuplicatePanel. |
controlID | integer | The defined constant, located in the .uir header file, that you assigned to the control in the User Interface Editor, or the ID returned by NewCtrl or DuplicateCtrl. |
begIndex | integer | The zero-based index specifying the first item the function searches. |
cell | Point | A Point structure specifying the cell which you want to search. The specified cell must be of type VAL_CELL_RING or VAL_CELL_COMBO_BOX. The Point structure is defined as follows: typedef struct { int x; int y; } Point; Pass the one-based column index of the cell in the x field of the structure, and the one-based row index of the cell in the y field of the structure. You can create a Point without having to declare a variable by using the following function: Point MakePoint (int x, int y); ExampleGetTableCellRingIndexFromValue (panelHandle, controlID, 0, MakePoint (2, 3), &item, "abc"); |
value | string | The value you want to locate in the list. The ATTR_CASE_SENSITIVE_COMPARE attribute determines whether or not the comparison is case-sensitive. |
Output | ||
Name | Type | Description |
index | integer (passed by reference) | The zero-based index of the first item matching the specified value. |
Name | Type | Description | ||||
status | integer | Return value indicating whether the function was successful. A negative number indicates that an error occurred.
|