ObjectDCL Banner

UrlAddress Property

Description

Holds the URL address to be called if the control is clicked.

Type

This property is a string.

Applies For

UrlLink.

Invoking From Old API

Can be passed as "UrlAddress" to Control_SetProperty and Control_GetProperty's string property name where applicable.

Getter Example

CopyCode imageCopy Code
; Get the property from the control
(setq Value (Odcl_Control_GetUrlAddress MyProject_MyForm_MyControl))

(setq Value (Odcl_Control_GetUrlAddress "MyProject" "MyForm" "MyControl"))

Setter Example

CopyCode imageCopy Code
; Set the property to the control
(Odcl_Control_SetLinkType MyProject_MyForm_MyControl "mailto:mybestfriend@yahoo.com")

(Odcl_Control_SetLinkType "MyProject" "MyForm" "MyControl" "mailto:mybestfriend@yahoo.com")

See Also

LinkType