SpreadsheetGear 2012
Paint Event (WorkbookView)






Syntax
'Declaration
 
<SRCategoryAttribute("Appearance")>
<SRDescriptionAttribute("Occurs when a control needs repainting.")>
Public Event Paint As System.Windows.Forms.PaintEventHandler
'Usage
 
Dim instance As WorkbookView
Dim handler As System.Windows.Forms.PaintEventHandler
 
AddHandler instance.Paint, handler
[SRCategory("Appearance")]
[SRDescription("Occurs when a control needs repainting.")]
public event System.Windows.Forms.PaintEventHandler Paint
public event Paint: System.Windows.Forms.PaintEventHandler; 
In JScript, you can handle the events defined by another class, but you cannot define your own.
[SRCategory("Appearance")]
[SRDescription("Occurs when a control needs repainting.")]
public: __event System.Windows.Forms.PaintEventHandler* Paint
[SRCategory("Appearance")]
[SRDescription("Occurs when a control needs repainting.")]
public:
event System.Windows.Forms.PaintEventHandler^ Paint
Event Data

The event handler receives an argument of type System.Windows.Forms.PaintEventArgs containing data related to this event. The following PaintEventArgs properties provide information specific to this event.

PropertyDescription
ClipRectangleGets the rectangle in which to paint.  
GraphicsGets the graphics used to paint.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

WorkbookView Class
WorkbookView Members

Send Feedback