Search
HtmlBuilder.CreateImageMap Method
See Also
 



Generates an HTML image map code based on the contents of Document.

 Syntax

VB6  Copy Code

Public Function CreateImageMap( _
    ByVal MapName As String _
) As String

C++  Copy Code

public:
BSTR CreateImageMap (
    BSTR MapName
)

 Parameters

MapName

The name of the HTML image map generated.

 Return Value

 Remarks

Document must be assigned to before calling this method. The <AREA> definitions included in the map correspond to the outlines of diagram nodes. Outlines of curved box shapes are approximated to polygons.

The value of the HyperLink property of each node is assigned to the HREF attribute of the node's <AREA>. The ALT attribute is set to the value of node's ToolTip. Each area's TARGET is set to LinkTarget.

 See Also