TextCylinderDrawItem Method

Draws one String over the surface of a TextCylinder.

Definition

Namespace: BeeMobile.iWheel
Assembly: BeeMobile.iWheel.NET48 (in BeeMobile.iWheel.NET48.dll) Version: 4.8.4.3
C#
protected override void DrawItem(
	Graphics aGraphics,
	RectangleF aRectF,
	int aIndex
)

Parameters

aGraphics  Graphics
A System.Drawing.Graphics.Drawing.Graphics object used to perform the drawing.
aRectF  RectangleF
A System.Drawing.Rectangle.Drawing.Rectangle which specifies the bounds of the region to draw into.
aIndex  Int32
Contains the image's index in the ImageList that should be drawn.

Remarks

This method draws a particular String into a specified region using the specified Graphics. The method does not check neither clips the drawing to ensure the drawing stays inside the rectangle. Due to performance reasons this check has to be done by the implementor.

See Also