Table of Contents

Class MatrixFieldValue

Namespace
Dynamicweb.Ecommerce.Products.Categories
Assembly
Dynamicweb.Ecommerce.dll

Represents a single cell value from a matrix field stored relationally.

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

Constructors

MatrixFieldValue(string, string?, int)

Represents a single cell value from a matrix field stored relationally.

public MatrixFieldValue(string ColumnId, string? Value, int SortOrder)

Parameters

ColumnId string
Value string
SortOrder int

Fields

FieldIdPrefix

Prefix used to build the matrix column-configuration category's system name.

public const string FieldIdPrefix = "Matrix_"

Field Value

string

Properties

ColumnId

public string ColumnId { get; init; }

Property Value

string

SortOrder

public int SortOrder { get; init; }

Property Value

int

Value

public string? Value { get; init; }

Property Value

string
To top