* Set the matrix dimension. * @param columns The number of columns in the matrix (0 for autoscaling). * @param rows The number of rows in the matrix (0 for autoscaling). */
| 1221 | * @param rows The number of rows in the matrix (0 for autoscaling). |
| 1222 | */ |
| 1223 | void NWidgetCore::SetMatrixDimension(uint32_t columns, uint32_t rows) |
| 1224 | { |
| 1225 | this->widget_data.matrix = { columns, rows }; |
| 1226 | } |
| 1227 | |
| 1228 | /** |
| 1229 | * Set the resize widget type of the nested widget. |
no outgoing calls
no test coverage detected