Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid.Automation Namespace / DataGridContextAutomationPeer Class / CreatePeerForGroup Method
The Group that is associated with the DataGridGroupAutomationPeer.


In This Topic
    CreatePeerForGroup Method
    In This Topic
    Creates a DataGridGroupAutomationPeer the specified Group.
    Syntax
    'Declaration
     
    Protected Overridable Function CreatePeerForGroup( _
       ByVal group As Group _
    ) As DataGridGroupAutomationPeer
    'Usage
     
    Dim instance As DataGridContextAutomationPeer
    Dim group As Group
    Dim value As DataGridGroupAutomationPeer
     
    value = instance.CreatePeerForGroup(group)
    protected virtual DataGridGroupAutomationPeer CreatePeerForGroup( 
       Group group
    )

    Parameters

    group
    The Group that is associated with the DataGridGroupAutomationPeer.
    Remarks

    This automation peer remains in memory until the associated item is destroyed.

    The same instance of the automation peer is returned from subsequent calls to this method and calls to FromElement. The type of the peer is determined by the OnCreateAutomationPeer virtual callback. If item does not implement the callback, no automation peer is created, and this method returns null (Nothing in Visual Basic).

    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