Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / ChildViewCreated Event
Example


In This Topic
    ChildViewCreated Event
    In This Topic
    Occurs when the user creates a child sheet.
    Syntax
    '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.

    PropertyDescription
    Gets or sets the page navigation.  
    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