Interface IClockRenderer
Assembly: Syncfusion.Tools.Windows.dll
public interface IClockRenderer
Methods
Declaration
void DrawBackGroundImage(Graphics g, Rectangle rect, Image image)
Parameters
Type |
Name |
Description |
System.Drawing.Graphics |
g |
|
System.Drawing.Rectangle |
rect |
|
System.Drawing.Image |
image |
|
Declaration
void DrawHourHand(Graphics g, int length, float width, Point Center, Color color, DateTime dateTime)
Parameters
Type |
Name |
Description |
System.Drawing.Graphics |
g |
|
System.Int32 |
length |
|
System.Single |
width |
|
System.Drawing.Point |
Center |
|
System.Drawing.Color |
color |
|
System.DateTime |
dateTime |
|
Declaration
void DrawMinuteHand(Graphics g, int length, float width, Point Center, Color color, DateTime dateTime)
Parameters
Type |
Name |
Description |
System.Drawing.Graphics |
g |
|
System.Int32 |
length |
|
System.Single |
width |
|
System.Drawing.Point |
Center |
|
System.Drawing.Color |
color |
|
System.DateTime |
dateTime |
|
Declaration
void DrawMinutesLine(Graphics g, int Radius, Point center, Color color, Font font, float thickness)
Parameters
Type |
Name |
Description |
System.Drawing.Graphics |
g |
|
System.Int32 |
Radius |
|
System.Drawing.Point |
center |
|
System.Drawing.Color |
color |
|
System.Drawing.Font |
font |
|
System.Single |
thickness |
|
Declaration
void DrawSecondHand(Graphics g, int length, float width, Point Center, Color color, DateTime dateTime)
Parameters
Type |
Name |
Description |
System.Drawing.Graphics |
g |
|
System.Int32 |
length |
|
System.Single |
width |
|
System.Drawing.Point |
Center |
|
System.Drawing.Color |
color |
|
System.DateTime |
dateTime |
|