AfterFinalRender Event

Microsoft Access Visual Basic

AfterFinalRender Event

       

Occurs after all elements in the specified PivotChart view have been rendered.

Private Sub Form_AfterFinalRender(ByVal drawObject As Object)

drawObject   A ChChartDraw object. Use the methods and properties of this object to draw objects on the chart.

Example

The following example demonstrates the syntax for a subroutine that traps the AfterFinalRender event.

Private Sub Form_AfterFinalRender(ByVal drawObject As Object)
    MsgBox "The PivotChart View has fully rendered."
End Sub