'Declaration Public Event ChildViewCreated As CreateChildViewEventHandler
'Usage Dim instance As FpSpread Dim handler As CreateChildViewEventHandler AddHandler instance.ChildViewCreated, handler
public event CreateChildViewEventHandler ChildViewCreated
Event Data
The event handler receives an argument of type CreateChildViewEventArgs containing data related to this event. The following CreateChildViewEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Pager | Gets or sets the page navigation. |
SheetView | Gets the child sheet (SheetView object) being created. |
Remarks
The SpreadImage class is not supported in the ChildViewCreated event.
Example
This example illustrates the use of the event.
See Also