Share via


Form.AfterFinalRender Event

Access Developer Reference

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

Syntax

expression.AfterFinalRender(drawObject )

expression   A variable that represents a Form object.

Parameters

Name Required/Optional Data Type Description
drawObject Required Object A ChChartDraw object. Use the methods and properties of this object to draw objects on the chart.

Return Value
nothing

Example

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

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