API Documentation > CorelDRAW > 2025-v26 > URL > IVGURL
URL.Address property
Gets or sets URL Address
Syntax:
Property Get Address() As String
Property Let Address(ByVal Value As String)
Remarks:
The Address property returns or specifies the address of a URL.
Examples:
The following VBA example displays all URLs contained in the active page.
Sub Test()
Dim sh As Shape, s As String
For Each sh In ActivePage.Shapes
  s = s & sh.URL.Address & vbCr
Next sh
MsgBox "The current page contains the following URL addresses: " & vbCr & s 
End Sub