8 references to flags
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ListView.cs (8)
3342
if (displayIndex >= 0 && ((lvhi.
flags
& NativeMethods.LVHT_ONITEM) != 0))
3561
if (item == null && (NativeMethods.LVHT_ABOVE & lvhi.
flags
) == NativeMethods.LVHT_ABOVE) {
3562
location = (ListViewHitTestLocations)((MASK_HITTESTFLAG & lvhi.
flags
) | (int)ListViewHitTestLocations.AboveClientArea);
3564
else if (item != null && (NativeMethods.LVHT_ONITEMSTATEICON & lvhi.
flags
) == NativeMethods.LVHT_ONITEMSTATEICON) {
3565
location = (ListViewHitTestLocations)((MASK_HITTESTFLAG & lvhi.
flags
) | (int)ListViewHitTestLocations.StateImage);
3568
location = (ListViewHitTestLocations)lvhi.
flags
;
5370
if (displayIndex != -1 && (lvhi.
flags
& NativeMethods.LVHT_ONITEMSTATEICON) != 0) {
5400
if (displayIndex != -1 && (lvhi.
flags
& NativeMethods.LVHT_ONITEM) != 0) {