Returns a pattern that is an array of circles.

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

Syntax

C#
public static Brush Dot(
	int n,
	int r,
	Color colorBackground,
	Color colorCircle
)
Visual Basic (Declaration)
Public Shared Function Dot ( _
	n As Integer, _
	r As Integer, _
	colorBackground As Color, _
	colorCircle As Color _
) As Brush
Visual C++
public:
static Brush^ Dot(
	int n, 
	int r, 
	Color colorBackground, 
	Color colorCircle
)

Parameters

n
Type: System..::.Int32
An int that specifies the pattern size in pixels.
r
Type: System..::.Int32
An int which specifies the radius of circles in the pattern in pixels.
colorBackground
Type: System.Drawing..::.Color
A Color which specifies the background color.
colorCircle
Type: System.Drawing..::.Color
A Color which specifies the color of circles in the pattern.

Return Value

A Brush containing the pattern.

See Also