Skip to main content
A newer version of this page is available. .

LayoutViewCardDifferences.Differences Property

Contains difference records for a card, identifying how the card field settings differ from the default settings.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public Dictionary<string, LayoutItemDifferences> Differences { get; }

Property Value

Type Description
Dictionary<String, LayoutItemDifferences>

A Dictionary<String, LayoutItemDifferences> object that contains difference records for all card fields.

Remarks

Keys in the Differences collection are card field names (names of corresponding LayoutViewField objects). Groups, tabbed groups, separators, etc are also identified by names.

Values in the Differences collection represent LayoutItemDifferences objects. This object summarizes difference records for a specified card field.

To add a difference record, use the LayoutViewCardDifferences.AddItemDifference method.

See Also