XFINIUM.PDF.View.Win Documentation
ContentPainted Event



Xfinium.Pdf.View Namespace > PdfDocumentView Class : ContentPainted Event
Gets or sets the event that is fired after the viewer content has been drawn.
Syntax
'Declaration
 
<CategoryAttribute("PDF")>
<DescriptionAttribute("The event that is fired after the viewer content has been drawn")>
Public Event ContentPainted As EventHandler(Of PaintEventArgs)
'Usage
 
Dim instance As PdfDocumentView
Dim handler As EventHandler(Of PaintEventArgs)
 
AddHandler instance.ContentPainted, handler
[Category("PDF")]
[Description("The event that is fired after the viewer content has been drawn")]
public event EventHandler<PaintEventArgs> ContentPainted
[Category("PDF")]
[Description("The event that is fired after the viewer content has been drawn")]
public:
event EventHandler<PaintEventArgs^>^ ContentPainted
Event Data

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

PropertyDescription
Gets the rectangle in which to paint.  
Gets the graphics used to paint.  
Requirements

Supported .NET Platforms: .NET 4.0 and higher, Windows Forms


Target Platforms:Windows 10, Windows 8.1, Windows 8 , Windows 7, Windows Vista SP1 or later, Windows Server 2008, Windows Server 2008 R2

See Also