24 references to GetNextVisibleCell
System.Windows.Forms (24)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (4)
129ToolStripPanelCell? cell = RowManager.GetNextVisibleCell(0, forward: true); 385ToolStripPanelCell? cell = RowManager.GetNextVisibleCell(Cells.Count - 1, forward: false); 408ToolStripPanelCell? cell = RowManager.GetNextVisibleCell(Cells.Count - 1, forward: false); 505ToolStripPanelCell? cell = RowManager.GetNextVisibleCell(Cells.Count - 1, forward: false);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (9)
107ToolStripPanelCell? lastCellOnRow = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 213cell = GetNextVisibleCell(index + 1, /*forward*/true); 283ToolStripPanelCell? lastCell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 298cell = GetNextVisibleCell(index, forward: true); 333cell = GetNextVisibleCell(index, forward: true); 366ToolStripPanelCell? nextCell = GetNextVisibleCell(index + 1, forward: true); 489ToolStripPanelCell? nextCell = GetNextVisibleCell(Row.Cells.Count - 2, forward: false); 490ToolStripPanelCell? lastCell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 534ToolStripPanelCell? cell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (11)
109ToolStripPanelCell? lastCellOnRow = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 215cell = GetNextVisibleCell(index + 1, forward: true); 285ToolStripPanelCell? lastCell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 328cell = GetNextVisibleCell(index, forward: true); 355ToolStripPanelCell? lastCell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 361ToolStripPanelCell? lastCellOnRow = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 463ToolStripPanelCell? nextCell = GetNextVisibleCell(index + 1, forward: true); 499ToolStripPanelCell? nextCell = GetNextVisibleCell(Row.Cells.Count - 2, forward: false); 500ToolStripPanelCell? lastCell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 543ToolStripPanelCell? cell = GetNextVisibleCell(Row.Cells.Count - 1, forward: false); 576ToolStripPanelCell? nextCell = GetNextVisibleCell(index + 1, forward: true);