API Documentation > CorelDRAW > 2025-v26 > URL > IVGURL
URL.BookMark property
Gets or sets URL Bookmark
Syntax:
Property Get BookMark() As String
Property Let BookMark(ByVal Value As String)
Remarks:
The BookMark property returns or specifies a bookmark for a URL.
Examples:
The following VBA example creates an ellipse on the active layer and assigns a bookmark to that ellipse.
Sub Test()
ActivePage.ActiveLayer.CreateEllipse 2, 3, 4, 5
ActiveShape.URL.BookMark = "Page 1" 
End Sub