API Documentation > Custom user interface > Object ProUITable > Function ProUITableRowsInsert
Function ProUITableRowsInsert
Description
Inserts one or more new rows into the table.
Synopsis
#include <ProUITable.h>
ProUITableRowsInsert
(
char* dialog
/* (In)
The name of the dialog that contains the table.
*/
char* component
/* (In)
The table name.
*/
char* row
/* (In)
The table row name. The new rows will be inserted after this row. If NULL, new rows will be inserted at the top of the table.
*/
int count
/* (In)
Number of items in the names array
*/
char** names
/* (In)
Array of new row names.
*/
)
Returns
The function was successful
The function failed
An invalid argument was given
Sample Code References
User Guide References
Was this helpful?