* @brief Get number of data rows (excluding label rows). * @returns row count. */
| 1151 | * @returns row count. |
| 1152 | */ |
| 1153 | size_t GetRowCount() const |
| 1154 | { |
| 1155 | const int count = static_cast<int>(mData.size()) - (mLabelParams.mColumnNameIdx + 1); |
| 1156 | return (count >= 0) ? static_cast<size_t>(count) : 0; |
| 1157 | } |
| 1158 | |
| 1159 | /** |
| 1160 | * @brief Get cell by index. |
no outgoing calls
no test coverage detected