12 references to LayoutInfo
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridViewColumn.cs (1)
1283int displayHeight = dataGridView.LayoutInfo.Data.Height;
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (3)
105Debug.Assert(!this.DataGridView.LayoutInfo.dirty); 106return this.DataGridView.LayoutInfo.TopLeftHeader != Rectangle.Empty; 393if (this.DataGridView.LayoutInfo.TopLeftHeader != Rectangle.Empty)
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (8)
2122GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height); 2127useRowShortcut = GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height + this.DataGridView.VerticalScrollingOffset) && 2128firstDisplayedRowHeight <= this.DataGridView.LayoutInfo.Data.Height; 2139useRowShortcut = this.DataGridView.LayoutInfo.Data.Height < displayedRowsHeightBeforeAddition && 2140firstDisplayedRowHeight <= this.DataGridView.LayoutInfo.Data.Height; 2166GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height + SystemInformation.HorizontalScrollBarHeight); 2177useRowShortcut = GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height + this.DataGridView.VerticalScrollingOffset + SystemInformation.HorizontalScrollBarHeight) && 2178firstDisplayedRowHeight <= this.DataGridView.LayoutInfo.Data.Height;