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