Fill a rectangle.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public override void FillRectangle(
	int x,
	int y,
	int width,
	int height
)
Visual Basic (Declaration)
Public Overrides Sub FillRectangle ( _
	x As Integer, _
	y As Integer, _
	width As Integer, _
	height As Integer _
)
Visual C++
public:
virtual void FillRectangle(
	int x, 
	int y, 
	int width, 
	int height
) override

Parameters

x
Type: System..::.Int32
An int which specifies the x-coordinate of the upper-left corner of the rectangle.
y
Type: System..::.Int32
An int which specifies the y-coordinate of the upper-left corner of the rectangle.
width
Type: System..::.Int32
An int which specifies the width of the rectangle.
height
Type: System..::.Int32
An int which specifies the height of the rectangle.

See Also