Nevron .NET Vision
Nevron.Editors Namespace / NThemeExplorer Class / DrawNode Event


In This Topic
    DrawNode Event (NThemeExplorer)
    In This Topic
    Syntax
    'Declaration
     
    
    <SRCategoryAttribute("CatBehavior")>
    <SRDescriptionAttribute("TreeViewDrawNodeEventDescr")>
    Public Event DrawNode As System.Windows.Forms.DrawTreeNodeEventHandler
    'Usage
     
    
    Dim instance As NThemeExplorer
    Dim handler As System.Windows.Forms.DrawTreeNodeEventHandler
     
    AddHandler instance.DrawNode, handler
    [SRCategory("CatBehavior")]
    [SRDescription("TreeViewDrawNodeEventDescr")]
    public event System.Windows.Forms.DrawTreeNodeEventHandler DrawNode
    Event Data

    The event handler receives an argument of type System.Windows.Forms.DrawTreeNodeEventArgs containing data related to this event. The following DrawTreeNodeEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the size and location of the System.Windows.Forms.TreeNode to draw.  
    Gets or sets a value indicating whether the System.Windows.Forms.TreeNode should be drawn by the operating system rather than being owner drawn.  
    Gets the System.Drawing.Graphics object used to draw the System.Windows.Forms.TreeNode.  
    Gets the System.Windows.Forms.TreeNode to draw.  
    Gets the current state of the System.Windows.Forms.TreeNode to draw.  
    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