ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The ShapeExtremityStart property gets and sets the source end shape of a Wire control.
Example
// Création et initialisation d'un champ Fil 
// Ce fil relie le champ BTN_ChampA et le champ BTN_ChampB
NomFil is Control

NomFil <- ControlCreate("", typWire)
NomFil.ChampDépart = BTN_ChampA
NomFil.ChampArrivée = BTN_ChampB
NomFil.FormeExtrémitéDépart = shapeDiamond
NomFil.FormeExtrémitéArrivée = shapeCircle
NomFil.FormeExtrémitéTaille = 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:
shapeNoneNo shape.
shapeSquareStarting end shape: Square.
shapeArrowStarting end shape: Arrow.
shapeDiamondShape of starting end: Losange.
shapeCircleShape of starting end: Round.
shapeTriangleShape of starting end: 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:
shapeNoneNo shape.
shapeSquareStarting end shape: Square.
shapeArrowStarting end shape: Arrow.
shapeDiamondShape of starting end: Losange.
shapeCircleShape of starting end: Round.
shapeTriangleShape of starting end: 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.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help