From 9f98fa269be67c242145f726166969e5bd1e1fd1 Mon Sep 17 00:00:00 2001 From: RomanTsukanov Date: Mon, 22 Jan 2024 15:51:58 +0400 Subject: [PATCH] Single-Select Matrix: Describe the `cells` property --- src/question_matrix.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/question_matrix.ts b/src/question_matrix.ts index 4325b0823d..684ed784a7 100644 --- a/src/question_matrix.ts +++ b/src/question_matrix.ts @@ -413,6 +413,11 @@ export class QuestionMatrixModel public get visibleRows(): Array { 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; }