Called when a new empty page is created and added to the current document, raises the PageConfigure event. When this method is called, the C1Page has already been added to the Pages collection but has not yet been resolved. If overridden in a derived class, must call the base method; can be used to change the layout of the new page.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
protected virtual PageLayout OnPageConfigure(
	C1Page page
)
Visual Basic
Protected Overridable Function OnPageConfigure ( _
	page As C1Page _
) As PageLayout

Parameters

page
Type: C1.C1Preview..::..C1Page
The newly added C1Page object.

Return Value

The PageLayout object created by the PageConfigure event, or null.

See Also