6 references to minBandThickness
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewBand.cs (3)
500if (value < minBandThickness) 504throw new ArgumentOutOfRangeException("MinimumHeight", value, SR.GetString(SR.DataGridViewBand_MinimumHeightSmallerThanOne, (DataGridViewBand.minBandThickness).ToString(CultureInfo.CurrentCulture))); 508throw new ArgumentOutOfRangeException("MinimumWidth", value, SR.GetString(SR.DataGridViewBand_MinimumWidthSmallerThanOne, (DataGridViewBand.minBandThickness).ToString(CultureInfo.CurrentCulture)));
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
6448int maxDisplayedRows = (int) (rectScreen.Height / DataGridViewBand.minBandThickness);
winforms\Managed\System\WinForms\DataGridViewRowHeightInfoNeededEventArgs.cs (2)
57if (value < DataGridViewBand.minBandThickness) 59throw new ArgumentOutOfRangeException("MinimumHeight", value, SR.GetString(SR.DataGridViewBand_MinimumHeightSmallerThanOne, (DataGridViewBand.minBandThickness).ToString(CultureInfo.CurrentCulture)));