| File: System\Windows\Forms\Controls\ListView\ListViewHitTestLocation.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; [Flags] public enum ListViewHitTestLocations { None = (int)LVHITTESTINFO_FLAGS.LVHT_NOWHERE, AboveClientArea = 0x0100, BelowClientArea = (int)LVHITTESTINFO_FLAGS.LVHT_BELOW, LeftOfClientArea = (int)LVHITTESTINFO_FLAGS.LVHT_TOLEFT, RightOfClientArea = (int)LVHITTESTINFO_FLAGS.LVHT_TORIGHT, Image = (int)LVHITTESTINFO_FLAGS.LVHT_ONITEMICON, StateImage = 0x0200, Label = (int)LVHITTESTINFO_FLAGS.LVHT_ONITEMLABEL }