File: winforms\Managed\System\WinForms\ListViewHitTestLocation.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="ListViewHitTestLocations.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
 
namespace System.Windows.Forms {
    [
    Flags
    ]
    /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations"]/*' />
    public enum ListViewHitTestLocations {
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.None"]/*' />
        None = NativeMethods.LVHT_NOWHERE,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.AboveClientArea"]/*' />
        AboveClientArea = 0x0100,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.BelowClientArea"]/*' />
        BelowClientArea = NativeMethods.LVHT_BELOW,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.LeftOfClientArea"]/*' />
        LeftOfClientArea = NativeMethods.LVHT_LEFT,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.RightOfClientArea"]/*' />
        RightOfClientArea = NativeMethods.LVHT_RIGHT,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.Image"]/*' />
        Image = NativeMethods.LVHT_ONITEMICON,
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.StateImage"]/*' />
        StateImage = 0x0200, 
        /// <include file='doc\ListViewHitTestLocations.uex' path='docs/doc[@for="ListViewHitTestLocations.Label"]/*' />
        Label = NativeMethods.LVHT_ONITEMLABEL
    }
}