Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid Namespace / DataGridItemPropertyBase Class / Synonym Property


In This Topic
    Synonym Property
    In This Topic
    Gets or sets the complete path (using one or more DataGridItemPropertyBase.Name values) with which this item property must be associated and aligned when the TreeGridflowView flattens the details.
    Syntax
    'Declaration
     
    Public Property Synonym As String
    'Usage
     
    Dim instance As DataGridItemPropertyBase
    Dim value As String
     
    instance.Synonym = value
     
    value = instance.Synonym
    public string Synonym {get; set;}

    Property Value

    A string representing the complete path with which this item property must be associated and aligned when the TreeGridflowView flattens the details.
    Remarks

    Given the following:

    Master
        Detail
            Sub-Detail

    For the item properties of "Detail" and "Sub-Detail", this property would be set to the Name of the item property corresponding to the "Master" level in order to represent the complete path.

    For example: Detail = "Master.Detail", Sub-Detail = "Master.Detail.Sub-Detail"

    The purpose of the Synonym property is to allow an association of DataGridItemPropertyBase instances that do not share the same name.

    Requirements

    Target Platforms: Windows 11, Windows, 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also