Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / ChildWorkbookCreated Event
Example


In This Topic
    ChildWorkbookCreated Event
    In This Topic
    Occurs when a child workbook of the Spread component is created.
    Syntax
    'Declaration
     
    Public Event ChildWorkbookCreated As ChildWorkbookCreatedEventHandler
    'Usage
     
    Dim instance As FpSpread
    Dim handler As ChildWorkbookCreatedEventHandler
     
    AddHandler instance.ChildWorkbookCreated, handler
    public event ChildWorkbookCreatedEventHandler ChildWorkbookCreated
    Event Data

    The event handler receives an argument of type ChildWorkbookCreatedEventArgs containing data related to this event. The following ChildWorkbookCreatedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the child SpreadView object being created.  
    Remarks

    This event is raised by the OnChildWorkbookCreated method when a child workbook has been created.

    For more details on the individual event arguments, refer to ChildWorkbookCreatedEventArgs members.

    Example
    This example raises the ChildWorkbookCreated event.
    fpSpread1.ChildWorkbookCreated += new FarPoint.Win.Spread.ChildWorkbookCreatedEventHandler(fpSpread1ChildWorkbookCreated);
    
    private void fpSpread1ChildWorkbookCreated(object sender, FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs e)
    {
          e.Workbook.Sheets[e.Workbook.ActiveSheetIndex].AlternatingRows[0].BackColor = Color.Yellow;
    }
    
    Dim eh As FarPoint.Win.Spread.ChildWorkbookCreatedEventHandler = AddressOf FpSpread1ChildWorkbookCreated
    AddHandler FpSpread1.ChildWorkbookCreated, eh
    
    Private Sub FpSpread1ChildWorkbookCreated(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs)
    Handles FpSpread1.ChildWorkbookCreated
          e.Workbook.Sheets(e.Workbook.ActiveSheetIndex).AlternatingRows(0).BackColor = Color.Yellow
    End Sub
    See Also