Skip to content

Commit

Permalink
Single-Select Matrix: Describe the cells property
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTsukanov committed Jan 22, 2024
1 parent 2dcd61a commit 9f98fa2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/question_matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,11 @@ export class QuestionMatrixModel
public get visibleRows(): Array<MatrixRowModel> {
return this.getVisibleRows();
}
/**
* An array of matrix cells. Use this array to get or set cell values.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-matrix-rubric/ (linkStyle))
*/
public get cells(): MatrixCells {
return this.cellsValue;
}
Expand Down

0 comments on commit 9f98fa2

Please sign in to comment.