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