Search
Table.HyperLink Property
See Also
 



Gets or sets the hyperlink associated with this table.

 Syntax

VB6  Copy Code

Public Property Get HyperLink() As String
Public Property Let HyperLink( _
    ByVal value As String _
)

C++  Copy Code

public:
BSTR get_HyperLink ()
void put_HyperLink (
    BSTR value
)

 Property Value

A string value. The default is an empty string.

 Remarks

Sets or gets a hyperlink associated with a table. When creating an image map via HtmlBuilder's CreateImageMap method, the hyperlink is used as HREF value for the <AREA> definition corresponding to this table.

 See Also