Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public abstract class PaintSparkPartEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsPaintSparkPartEventArgs
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the PaintSparkPartEventArgs class.
C#
public PaintSparkPartEventArgs(Graphics graphics, GraphicsPath path, object context)
The Graphics object used to do the actual painting.
pathGraphicsPathThe GraphicsPath object forming a region of points which will be filled with color.
contextobjectThe context in which the painting will occur. The context can be the actual series, the annotations or the data points.
Properties
Gets the object context in which the event will fire.
C#
public object Context { get; }
The context.
Gets the Graphics object.
C#
public Graphics Graphics { get; }
The Graphics object.
Gets the GraphicsPath object.
C#
public GraphicsPath Path { get; }
The path object.