function Leadtools.Annotations.Core.AnnHotspotObject()
!MISSING Scrap '_RTJavaScript_Class_SYNTAX'!
The AnnHotspotObject object is designed to work as a scaled picture drawn inside a rectangle. The AnnHotspotObject object will draw the picture if the owner container is in design mode. If the container is in run mode, the AnnHotspotObject object will not draw the picture.
With the automated functions, in design mode, the rectangle contains a scaled image. The user clicks / taps and drags to specify the rectangle in the current window. In run mode, the object is transparent, but the mouse pointer changes to a hand when it is over the object.
Programmatically, the boundaries and location of the hotspot object can be controlled using the following properties:
Each object can be transformed with the following methods:
The AnnHotspotObject class inherits a number of properties from the AnnObject class, providing support for font, stroke and fill characteristics. These properties are listed below:
The name of the hotspot object can be controlled using AnnObject.Labels property, inherited from the AnnObject class.
An object can be part of a group annotation object or part of a container object. It cannot be part of both a group and a container at the same time.
The following properties can also be used to programmatically set characteristics of an AnnHotspotObject:
example: function SiteLibrary_DefaultPage$example() { // assumes _automation is valid // Create a new instance of AnnResources if the container does not already have one var resources = this._automation.get_container().get_resources(); if (resources == null) { resources = new Leadtools.Annotations.Core.AnnResources(); this._automation.get_container().set_resources(resources); } // Get the images collection var imagesResources = resources.get_images(); // Add our picture to it imagesResources.add(new Leadtools.Annotations.Core.AnnPicture("Resources/Objects/Hotspot.png")); var pictureIndex = imagesResources.length - 1; var inch = 720.0; // Add a hotspot object var hotspotObj = new Leadtools.Annotations.Core.AnnHotspotObject(); // Set the points for the hotspot hotspotObj.get_points().add(Leadtools.LeadPointD.create(1 * inch, 1 * inch)); hotspotObj.get_points().add(Leadtools.LeadPointD.create(2 * inch, 1 * inch)); hotspotObj.get_points().add(Leadtools.LeadPointD.create(2 * inch, 2 * inch)); hotspotObj.get_points().add(Leadtools.LeadPointD.create(1 * inch, 2 * inch)); // Set the picture hotspotObj.set_defaultPicture(pictureIndex); // Add the object to the automation container this._automation.get_container().get_children().add(hotspotObj); // Select the object this._automation.selectObject(hotspotObj); },