| rtMap | ||
Link As rtHotLink Links As rtEnumeration ParentContainer ParentObject root | version 1.5
Controls area hotspots associated with an image. rtMap object gets returned by property Map of rtGraphic object. It servers as container to add and remove area hotspots and links (represented by rtHotLink class objects). To retrieve and manipulate hotspot properties use enumaration Links :
Dim img as rtGraphic, enum as rtEnumeration, Link as rtHotlink ... ' get graphic if Not img.Map is Nothing then Set enum = img.Map.Links Do while enum.hasMoreElements Set Link = enum.NextElement ... process link Loop End if
Use Shape property of rtHotLink to define area size and shape. | |