Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid Namespace / DataGridItemProperty Class / DataGridItemProperty Constructor / DataGridItemProperty Constructor(String,Type,Boolean)
A string representing the name of a property in a DataGridCollectionView.
The property's data type.
true if the DataGridItemProperty is readonly; false otherwise.


In This Topic
    DataGridItemProperty Constructor(String,Type,Boolean)
    In This Topic

    Initializes a new instance of the DataGridItemProperty class specifying the name of the property, its value path, and indicating whether it is readonly.

    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal dataType As Type, _
       ByVal isReadOnly As Boolean _
    )
    'Usage
     
    Dim name As String
    Dim dataType As Type
    Dim isReadOnly As Boolean
     
    Dim instance As New DataGridItemProperty(name, dataType, isReadOnly)
    public DataGridItemProperty( 
       string name,
       Type dataType,
       bool isReadOnly
    )

    Parameters

    name
    A string representing the name of a property in a DataGridCollectionView.
    dataType
    The property's data type.
    isReadOnly
    true if the DataGridItemProperty is readonly; false otherwise.
    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