Draws a Text object.

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

Syntax

C#
public override Size DrawText(
	Text text,
	int x,
	int y
)
Visual Basic (Declaration)
Public Overrides Function DrawText ( _
	text As Text, _
	x As Integer, _
	y As Integer _
) As Size
Visual C++
public:
virtual Size DrawText(
	Text^ text, 
	int x, 
	int y
) override

Parameters

text
Type: Imsl.Chart2D..::.Text
A Text object to be drawn.
x
Type: System..::.Int32
An int which specifies the abscissa of the (x,y) point at which to start drawing the text.
y
Type: System..::.Int32
An int which specifies the ordinate of the (x,y) point at which to start drawing the text.

Return Value

A Size containing the bounds of the Text to be drawn.

See Also