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