Class PaintSparkPartEventArgs
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public abstract class PaintSparkPartEventArgs : CancelEventArgs
  Constructors
PaintSparkPartEventArgs(Graphics, GraphicsPath, Object)
Initializes a new instance of the PaintSparkPartEventArgs class.
Declaration
public PaintSparkPartEventArgs(Graphics graphics, GraphicsPath path, object context)
  Parameters
| 
        System.Drawing.Graphics
        graphics
         The System.Drawing.Graphics object used to do the actual painting.  | 
    
| 
        System.Drawing.Drawing2D.GraphicsPath
        path
         The System.Drawing.Drawing2D.GraphicsPath object forming a region of points which will be filled with color.  | 
    
| 
        System.Object
        context
         The context in which the painting will occur. The context can be the actual series, the annotations or the data points.  | 
    
Properties
Context
Gets the object context in which the event will fire.
Declaration
public object Context { get; }
  Property Value
| 
        System.Object
         The context.  | 
    
Graphics
Gets the Graphics object.
Declaration
public Graphics Graphics { get; }
  Property Value
| 
        System.Drawing.Graphics
         The Graphics object.  | 
    
Path
Gets the GraphicsPath object.
Declaration
public GraphicsPath Path { get; }
  Property Value
| 
        System.Drawing.Drawing2D.GraphicsPath
         The path object.  |