Nevron .NET Vision
Nevron.UI.WinForm.Controls Namespace / NTreeList Class / CreateGroupNode Event


In This Topic
    CreateGroupNode Event
    In This Topic
    Raised whenever a NTreeListGroupNode instance is required. This allows for providing user-defined group nodes.
    Syntax
    'Declaration
     
    
    Public Event CreateGroupNode As NTreeListGroupByNodeCreateEventHandler
    'Usage
     
    
    Dim instance As NTreeList
    Dim handler As NTreeListGroupByNodeCreateEventHandler
     
    AddHandler instance.CreateGroupNode, handler
    public event NTreeListGroupByNodeCreateEventHandler CreateGroupNode
    Event Data

    The event handler receives an argument of type NTreeListGroupByNodeCreateEventArgs containing data related to this event. The following NTreeListGroupByNodeCreateEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the proposed title of the group.  
    Gets the item associated with the group action.  
    Gets/sets the node. If null a default instance will be created.  
    Gets the value used for grouping.  
    Requirements

    Target Platforms: 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