|
|
|
|
|
AttachPointDeleteAll (Function) In french: PointDAttacheSupprimeTout 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. // 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|