ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Control functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deletes all the connection points for a control.
Reminder: The connection points allow you to use a Wire control on a control. As long as the control has no connection point, no wire can leave from the control or arrive to the control.
Example
// Deletes all the existing connection points
AttachPointDeleteAll(IMG_Logo)
// Defines a new connection point
ConnectionPointID is int
ConnectionPointID = AttachPointAdd(IMG_Logo, 100, 30))
 
WireName is Control
WireName <- ControlCreate("", typWire)
WireName.StartControl = IMG_Logo
WireName.EndControl = BTN_Modify
 
// Use the new connection point
WireName.AttachPointStart = ConnectionPointID
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: wd290obj.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help