2 writes to iGroupId
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.cs (1)
4142
lvItem.
iGroupId
= GetNativeGroupId(li);
System\Windows\Forms\Controls\ListView\ListViewItem.cs (1)
1097
lvItem.
iGroupId
= _listView.GetNativeGroupId(this);
6 references to iGroupId
System.Windows.Forms (6)
System\Windows\Forms\Controls\ListView\ListView.cs (3)
3976
Debug.Assert(lvItem.
iGroupId
!= -1, "there is a list view item which is not parented");
4147
result = PInvokeCore.SendMessage(this, PInvoke.LVM_HASGROUP, (WPARAM)lvItem.
iGroupId
);
4148
Debug.Assert(result != IntPtr.Zero, $"Doesn't contain group id: {lvItem.
iGroupId
}");
System\Windows\Forms\Controls\ListView\ListViewItem.cs (3)
1101
result = PInvokeCore.SendMessage(_listView, PInvoke.LVM_HASGROUP, (WPARAM)lvItem.
iGroupId
);
1102
Debug.Assert(!updateOwner || result != 0, $"Doesn't contain group id: {lvItem.
iGroupId
}");
1149
if (lvg.ID == lvItem.
iGroupId
)