17 references to item
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ListView.cs (17)
5824
LabelEditEventArgs e = new LabelEditEventArgs(nmlvdp.
item
.iItem);
6040
RetrieveVirtualItemEventArgs rVI = new RetrieveVirtualItemEventArgs(dispInfo.
item
.iItem);
6048
lvItem.SetItemIndex(this, dispInfo.
item
.iItem);
6049
if ((dispInfo.
item
.mask & NativeMethods.LVIF_TEXT) != 0) {
6051
if (dispInfo.
item
.iSubItem == 0) {
6055
if (lvItem.SubItems.Count <= dispInfo.
item
.iSubItem) {
6059
text = lvItem.SubItems[dispInfo.
item
.iSubItem].Text; // we want the sub item
6064
if (dispInfo.
item
.cchTextMax <= text.Length) {
6065
text = text.Substring(0, dispInfo.
item
.cchTextMax - 1);
6071
Marshal.Copy(buff, 0, dispInfo.
item
.pszText, text.Length + 1);
6074
Marshal.Copy(buff, 0, dispInfo.
item
.pszText, text.Length + 1);
6078
if ((dispInfo.
item
.mask & NativeMethods.LVIF_IMAGE) != 0 && lvItem.ImageIndex != -1) {
6079
dispInfo.
item
.iImage = lvItem.ImageIndex;
6082
if ((dispInfo.
item
.mask & NativeMethods.LVIF_INDENT) != 0) {
6083
dispInfo.
item
.iIndent = lvItem.IndentCount;
6115
if ((dispInfo.
item
.stateMask & NativeMethods.LVIS_STATEIMAGEMASK) != 0) {
6116
dispInfo.
item
.state |= lvItem.RawStateImageIndex;