Table of Contents

Method FillRectangle

Namespace
Alternet.Common
Assembly
Alternet.Common.v9.dll

FillRectangle(Rectangle)

When implemented by a class, fills the given rectangle by using the current brush.

void FillRectangle(Rectangle rect)

Parameters

rect Rectangle

The rectangle object to fill.

FillRectangle(int, int, int, int)

When implemented by a class, fills the given rectangular area by using the current brush.

void FillRectangle(int x, int y, int width, int height)

Parameters

x int

X-coordinate of the upper-left corner of the rectangle.

y int

Y-coordinate of the upper-left corner of the rectangle.

width int

Width of the rectangle.

height int

Height of the rectangle.

FillRectangle(Color, Rectangle)

When implemented by a class, fills the given rectangle by using specified color.

void FillRectangle(Color color, Rectangle rect)

Parameters

color Color

Specified color to fill rectangle.

rect Rectangle

The rectangle object to fill.

FillRectangle(Color, int, int, int, int)

When implemented by a class, fills the given rectangle by using specified color.

void FillRectangle(Color color, int x, int y, int width, int height)

Parameters

color Color

Specified color to fill rectangle.

x int

X-coordinate of the upper-left corner of the rectangle.

y int

Y-coordinate of the upper-left corner of the rectangle.

width int

Width of the rectangle.

height int

Height of the rectangle.