ListViewHitTestInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ListViewHitTestInfo.cs / 1 / ListViewHitTestInfo.cs

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

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


    /// 
    ///  
    ///    
    ///       Specifies the return value for HITTEST on ListView. 
    ///     
    /// 
    public class ListViewHitTestInfo { 

        private ListViewHitTestLocations loc;
        private ListViewItem item;
        private ListViewItem.ListViewSubItem subItem; 

        ///  
        ///  
        ///     Creates a ListViewHitTestInfo instance.
        ///  
        public ListViewHitTestInfo(ListViewItem hitItem, ListViewItem.ListViewSubItem hitSubItem, ListViewHitTestLocations hitLocation) {
            this.item = hitItem;
            this.subItem = hitSubItem;
            this.loc = hitLocation; 
        }
 
 
        /// 
        ///  
        ///     This gives the exact location returned by hit test on listview.
        /// 
        public ListViewHitTestLocations Location {
            get { 
                return loc;
            } 
        } 

        ///  
        /// 
        ///     This gives the ListViewItem returned by hit test on listview.
        /// 
        public ListViewItem Item { 
            get {
                return item; 
            } 
        }
 
        /// 
        /// 
        ///     This gives the ListViewSubItem returned by hit test on listview.
        ///  
        public ListViewItem.ListViewSubItem SubItem {
            get { 
                return subItem; 
            }
        } 
    }
}

// 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