| Visual Basic (Declaration) | |
|---|---|
Public Event ChildWorkbookCreated() As ChildWorkbookCreatedEventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public event ChildWorkbookCreatedEventHandler ChildWorkbookCreated() | |
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.
| Property | Description |
|---|---|
| Workbook | Gets the child SpreadView object being created. |
This example raises the ChildWorkbookCreated event.
| C# | Copy Code |
|---|---|
fpSpread1.ChildWorkbookCreated += new FarPoint.Win.Spread.ChildWorkbookCreatedEventHandler(fpSpread1ChildWorkbookCreated); | |
| Visual Basic | Copy Code |
|---|---|
Dim eh As FarPoint.Win.Spread.ChildWorkbookCreatedEventHandler = AddressOf FpSpread1ChildWorkbookCreated | |
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.