Gets or sets the hyperlink associated with this box.
SyntaxVB6
Copy Code
|
|---|
Public Property Get HyperLink() As String |
C++
Copy Code
|
|---|
public: |
A string value. The default is an empty string.
RemarksSets or gets a hyperlink associated with a box. When creating an image map via HtmlBuilder's CreateImageMap method, the hyperlink is used as HREF value for the <AREA> definition corresponding to this box.
ExampleThe sample code below assigns a hyperlink to a box before creating an HTML image map.
VB6
Copy Code
|
|---|
box.ToolTip = "Visit our site" |
See Also