Member Junction
    Preparing search index...

    The delta for a single field across all compared records.

    interface RecordComparisonFieldDelta {
        Category: string;
        Cells: RecordComparisonFieldCell[];
        Differs: boolean;
        DisplayName: string;
        FieldName: string;
    }
    Index

    Properties

    Category: string

    Optional grouping category from the field metadata.

    Per-record values for this field, in column order.

    Differs: boolean

    True when at least one record's value differs from the reference (column 0). False when every record shares the same value.

    DisplayName: string

    Display name for the field (falls back to FieldName).

    FieldName: string

    Field name (matches the entity field metadata Name).