Table of Contents

Class MatrixRow

Namespace
Dynamicweb.CoreUI.Editors.Lists
Assembly
Dynamicweb.CoreUI.dll

A single row of cell values within a Matrix editor.

public sealed record MatrixRow : IEquatable<MatrixRow>
Inheritance
MatrixRow
Implements
Inherited Members

Constructors

MatrixRow(string, IReadOnlyList<MatrixCell>)

A single row of cell values within a Matrix editor.

public MatrixRow(string Id, IReadOnlyList<MatrixCell> Cells)

Parameters

Id string
Cells IReadOnlyList<MatrixCell>

Properties

Cells

public IReadOnlyList<MatrixCell> Cells { get; init; }

Property Value

IReadOnlyList<MatrixCell>

Id

public string Id { get; init; }

Property Value

string
To top