10 references to flags
System.Windows.Forms (10)
System\Windows\Forms\Controls\ListView\ListView.cs (10)
3490
((lvhi.
flags
&
3729
if (item is null && (LVHITTESTINFO_FLAGS.LVHT_ABOVE & lvhi.
flags
) == LVHITTESTINFO_FLAGS.LVHT_ABOVE)
3731
location = (ListViewHitTestLocations)((MASK_HITTESTFLAG & (int)lvhi.
flags
) | (int)ListViewHitTestLocations.AboveClientArea);
3733
else if (item is not null && (LVHITTESTINFO_FLAGS.LVHT_ONITEMSTATEICON & lvhi.
flags
) == LVHITTESTINFO_FLAGS.LVHT_ONITEMSTATEICON)
3735
location = (ListViewHitTestLocations)((MASK_HITTESTFLAG & (int)lvhi.
flags
) | (int)ListViewHitTestLocations.StateImage);
3739
location = (ListViewHitTestLocations)lvhi.
flags
;
5893
if (displayIndex == -1 || lvhi.iSubItem != 0 || (lvhi.
flags
& LVHITTESTINFO_FLAGS.LVHT_ONITEMSTATEICON) == 0)
5936
(lvhi.
flags
&
6416
bool groupHeaderDblClicked = lvhi.
flags
== LVHITTESTINFO_FLAGS.LVHT_EX_GROUP_HEADER && clickType == PInvokeCore.WM_LBUTTONDBLCLK;
6418
bool chevronClicked = (lvhi.
flags
& LVHITTESTINFO_FLAGS.LVHT_EX_GROUP_COLLAPSE) == LVHITTESTINFO_FLAGS.LVHT_EX_GROUP_COLLAPSE && clickType == PInvokeCore.WM_LBUTTONUP;