TreeViewHitTestInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / TreeViewHitTestInfo.cs / 1 / TreeViewHitTestInfo.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Windows.Forms { 
 
    using System.Diagnostics;
    using System; 

    /// 
    /// 
    ///     
    ///       Specifies the return value for HITTEST on treeview.
    ///     
    ///  
    public class TreeViewHitTestInfo {
 
        private TreeViewHitTestLocations loc;
        private TreeNode node;

        ///  
        /// 
        ///     Creates a TreeViewHitTestInfo instance. 
        ///  
        public TreeViewHitTestInfo(TreeNode hitNode, TreeViewHitTestLocations hitLocation) {
            this.node = hitNode; 
            this.loc = hitLocation;
        }

 
        /// 
        ///  
        ///     This gives the exact location returned by hit test on treeview. 
        /// 
        public TreeViewHitTestLocations Location { 
            get {
                return loc;
            }
        } 

        ///  
        ///  
        ///     This gives the node returned by hit test on treeview.
        ///  
        public TreeNode Node {
            get {
                return node;
            } 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK