|
|
|
|
StartControl (Property) In french: ChampDépart
The StartControl property is used to determine or change the start control of a Wire control.
// Create and initialize a Wire control // This wire links the BTN_ControlA and BTN_ControlB controls WireName is Control WireName <- ControlCreate("", typWire) WireName.StartControl = BTN_ControlA WireName.EndControl = BTN_ControlB
Syntax
Finding out the start control of a Wire control Hide the details
<Result> = <Control used>.StartControl
<Result>: Character string Name of the start control. <Control used>: Control name Name of the Wire control.
Modifying the start control of a Wire control Hide the details
<Control used>.StartControl = <New Start Control>
<Control used>: Control name Name of the Wire control. <New Start Control>: Character string Name of the new start control. Remarks - The wire is displayed if the StartControl and EndControl properties have been specified and are visible.
- The attach points used can be modified using the AttachPointStart and AttachPointEnd properties.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|