currentRow()
时间: 2023-07-14 21:04:23 浏览: 366
divide-matrix-into-submatrix
`currentRow()` 是 `QTableWidget` 类的一个成员函数,用于获取当前选中单元格所在的行索引。
以下是 `currentRow()` 函数的使用示例:
```cpp
QTableWidget tableWidget;
tableWidget.setRowCount(5); // 设置表格的行数为5
// 获取当前选中单元格所在的行索引
int currentRow = tableWidget.currentRow();
// 输出当前行索引
qDebug() << "Current Row: " << currentRow;
```
上述示例中,`tableWidget` 是一个 `QTableWidget` 类型的对象。通过调用 `currentRow()` 函数,可以获取当前选中单元格所在的行索引,并将其存储在变量 `currentRow` 中。然后,你可以根据需要对该索引进行进一步处理。
请注意,`currentRow()` 函数仅在有选中单元格时才返回有效值。如果没有选中单元格,该函数将返回 `-1`。
阅读全文