|
|
|
|
|
ShapeExtremityStart (Property) In french: FormeExtrémitéDépart
The ShapeExtremityStart property gets and sets the source end shape 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 WireName.ShapeExtremityStart = shapeDiamond WireName.ShapeExtremityEnd = shapeCircle WireName.ShapeExtremitySize = 8
Syntax
Getting the source end shape in a Wire control Hide the details
<Result> = <Wire control>.ShapeExtremityStart
<Result>: Integer constant Type of shape used:
| | shapeNone | No shape. | shapeSquare | Source end shape: Square. | shapeArrow | Source end shape: Arrow. | shapeDiamond | Source end shape: Diamond. | shapeCircle | Source end shape: Circle. | shapeTriangle | Source end shape: Triangle. |
<Wire control>: Control name Name of the Wire control to be used.
Modifying the source end shape in a Wire control Hide the details
<Wire control>.ShapeExtremityStart = <New shape>
<Wire control>: Control name Name of the Wire control to be used. <New shape>: Integer constant New shape to use at the start of the Wire control:
| | shapeNone | No shape. | shapeSquare | Source end shape: Square. | shapeArrow | Source end shape: Arrow. | shapeDiamond | Source end shape: Diamond. | shapeCircle | Source end shape: Circle. | shapeTriangle | Source end shape: Triangle. |
Remarks - The color of the source and target shape in a Wire control is set by the Color property.
- The size of the source and target shape in a Wire control is set by the ShapeExtremitySize property.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|