ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Control functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Deletes all the connection points for a control.
Reminder: Attachment points allow you to use a Wire control on a queue field. As long as the control has no connection point, no wire can leave from the control or arrive to the control.
Example
// Supprime tous les points d'attache existant
AttachPointDeleteAll(IMG_Logo)
// Définit un nouveau point d'attache
IdPointDattache is int
IdPointDattache = AttachPointAdd(IMG_Logo, 100, 30))

NomFil is Control
NomFil <- ControlCreate("", typWire)
NomFil.ChampDépart = IMG_Logo
NomFil.ChampArrivée = BTN_Modifier

// Utilisation du nouveau point d'attache
NomFil.PointDAttacheDépart = IdPointDattache
Syntax
AttachPointDeleteAll(<Control used>)
<Control used>: Control name
Name of the control for which all the connection points must be deleted.
Remarks
  • AttachPointAdd adds a new connection point.
  • The AttachPointEnd and AttachPointStart properties allow you to handle these new connection points.
  • As long as the control has no connection point, no wire can leave from the control or arrive to the control.
Component: wd300obj.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help