6 references to MinBandThickness
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
6428
int maxDisplayedRows = rectScreen.Height / DataGridViewBand.
MinBandThickness
;
System\Windows\Forms\Controls\DataGridView\DataGridViewBand.cs (3)
361
if (value <
MinBandThickness
)
365
throw new ArgumentOutOfRangeException(nameof(value), value, string.Format(SR.DataGridViewBand_MinimumHeightSmallerThanOne,
MinBandThickness
));
369
throw new ArgumentOutOfRangeException(nameof(value), value, string.Format(SR.DataGridViewBand_MinimumWidthSmallerThanOne,
MinBandThickness
));
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeightInfoNeededEventArgs.cs (2)
41
if (value < DataGridViewBand.
MinBandThickness
)
43
throw new ArgumentOutOfRangeException(nameof(value), value, string.Format(SR.DataGridViewBand_MinimumHeightSmallerThanOne, DataGridViewBand.
MinBandThickness
));