RemoveRow 

Purpose

Deletes a row from the table.

Syntax

void RemoveRow(int nRow);

Parameters

nRow: Row number, starting from 0.

Exceptions

Throws const char* if the row is not found.

Throws const char* for ItDelLine failure in the RFC C-API.

Description

The current row pointer stored in the table is updated if necessary to still point to the same row before RemoveRow. If the current row is removed, the current row pointer is moved to point to the next row.

Related Information

Row

ConstRow

AppendEmptyRow

InsertEmptyRow