'DeclarationPublic Event Action As EventHandler(Of ShapeEventArgs)
'UsageDim instance As Shape Dim handler As EventHandler(Of ShapeEventArgs) AddHandler instance.Action, handler
public event EventHandler<ShapeEventArgs> Action
Event Data
The event handler receives an argument of type ShapeEventArgs containing data related to this event. The following ShapeEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Continue | Indicates whether to continue the default process. |
| Shape | Gets the shape to process. |
| Shapes | Gets all shapes to process. |
| Type | Gets the reason that trigger the event. |
See Also