CylinderDrawItem Method

Draws one item over the surface of a Cylinder.

Definition

Namespace: BeeMobile.iWheel
Assembly: BeeMobile.iWheel.NET48 (in BeeMobile.iWheel.NET48.dll) Version: 4.8.4.3
C#
protected abstract 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
A System.Object.Object which contains the data to be drawn.

Remarks

This method draws a particular piece of data 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