Class PaintShapeEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class PaintShapeEventArgs : EventArgs
Constructors
PaintShapeEventArgs(Graphics, GraphicsPath, Color, Color, Int32, Nullable<ShapeType>)
Declaration
public PaintShapeEventArgs(Graphics graphics, GraphicsPath path, Color fillColor, Color borderColor, int borderThickness, ShapeType? shapeType)
Parameters
System.Drawing.Graphics
graphics
|
System.Drawing.Drawing2D.GraphicsPath
path
|
System.Drawing.Color
fillColor
|
System.Drawing.Color
borderColor
|
System.Int32
borderThickness
|
System.Nullable<ShapeType>
shapeType
|
Fields
Handled
Determines if the original shape should be painted.
Declaration
public bool Handled
Field Value
System.Boolean
|
Properties
BorderColor
The border color selected from the DrawShape diaolog.
Declaration
public Color BorderColor { get; }
Property Value
System.Drawing.Color
|
BorderThickness
The border thickness selected from the DrawShape diaolog.
Declaration
public int BorderThickness { get; }
Property Value
System.Int32
|
FillColor
The fill color selected from the DrawShape diaolog.
Declaration
public Color FillColor { get; }
Property Value
System.Drawing.Color
|
Graphics
The graphics object that allows you to paint.
Declaration
public Graphics Graphics { get; }
Property Value
System.Drawing.Graphics
|
OriginalPath
The original shape path.
Declaration
public GraphicsPath OriginalPath { get; }
Property Value
System.Drawing.Drawing2D.GraphicsPath
|
ShapeType
The shape selected from the DrawShape diaolog.
Declaration
public ShapeType? ShapeType { get; }
Property Value
System.Nullable<ShapeType>
|