Raised when an arrow becomes a self-loop.
SyntaxVB6
Copy Code
|
|---|
Public Event SetSelfLoopShape |
Event DataParameter | Type | Description |
|---|---|---|
arrow | [input] reference to an Arrow | The arrow that becomes a self-loop. |
handled | [byref] boolean | Indicates whether the event handler has set a custom loop shape. |
Dispatch ID: 107
ExampleThe following sample handlers set the link shape to a rectangle at the top-left corner of a box.
VB6
Copy Code
|
|---|
Private Sub fcx_SetSelfLoopShape(ByVal arrow As FLOWCHARTLibCtl.IArrowItem, handled As Boolean) arrow.Segments = 4 |
See Also