7 references to FillRectangles
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
1254
/// <inheritdoc cref="
FillRectangles
(Brush, RectangleF[])"/>
1272
/// <inheritdoc cref="
FillRectangles
(Brush, RectangleF[])"/>
1276
/// <inheritdoc cref="
FillRectangles
(Brush, RectangleF[])"/>
System.Drawing.Common.Tests (4)
mono\System.Drawing\GraphicsTests.cs (4)
898
g.
FillRectangles
(brush, rectf);
1167
Assert.Throws<ArgumentNullException>(() => g.
FillRectangles
(null, new RectangleF[1]));
1175
Assert.Throws<ArgumentNullException>(() => g.
FillRectangles
(Brushes.Red, (RectangleF[])null));
1183
Assert.Throws<ArgumentException>(() => g.
FillRectangles
(Brushes.Red, Array.Empty<RectangleF>()));