FlexReport for WinForms | ComponentOne
C1.Win.FlexReport.4.5.2 Assembly / C1.Win.FlexReport Namespace / C1FlexReport Class / OnPage Property

In This Topic
    OnPage Property (C1FlexReport)
    In This Topic
    Gets or sets the VBScript that is executed when a new page is created.
    Syntax
    'Declaration
     
    Public Property OnPage As String
    public string OnPage {get; set;}
    Remarks

    The control also fires the StartPage event at this time.

    The difference between the regular event and the VBScript property is that the handler for the regular event belongs to the application, and should thus be used to support tasks that are independent of the report. For example, to update a label showing how many pages have been rendered so far.

    The VBScript handler in the property belongs to the report, and will be executed regardless of the application. For example, a report might contain a VBScript handler that updates a variable at every page break.

    See Also