AnnHotspotObject Class (original) (raw)

Summary

Defines an annotation hot spot object.

Syntax

C#

Objective-C

C++/CLI

Java

Python

@interface LTAnnHotspotObject : LTAnnImageObject<NSCoding, NSCopying> 
public class AnnHotspotObject extends AnnImageObject 
class AnnHotspotObject(AnnImageObject): 

Example

This example creates a hotspot object and adds it to the automation container.

using Leadtools.Annotations.Automation; using Leadtools.Annotations.Engine; using Leadtools.Codecs; using Leadtools.Annotations; using Leadtools.Annotations.WinForms; public void AnnCore_AnnHotspotObject() { // assumes _automation is valid // Create a new instance of AnnResources if the container does not already have one AnnResources resources = _automation.Manager.Resources; if (resources == null) { resources = new AnnResources(); } // Get the images collection IList<AnnPicture> imagesResources = resources.Images; // Add our picture to it imagesResources.Add(new AnnPicture(@"ms-appx:///Assets/Hotspot.png")); int pictureIndex = imagesResources.Count - 1; double inch = 720.0; // Add a hotspot object AnnHotspotObject hotspotObj = new AnnHotspotObject(); // Set the points for the hotspot hotspotObj.Points.Add(LeadPointD.Create(1 * inch, 1 * inch)); hotspotObj.Points.Add(LeadPointD.Create(2 * inch, 1 * inch)); hotspotObj.Points.Add(LeadPointD.Create(2 * inch, 2 * inch)); hotspotObj.Points.Add(LeadPointD.Create(1 * inch, 2 * inch)); // Set the picture hotspotObj.DefaultPicture = pictureIndex; // Add the object to the automation container _automation.Container.Children.Add(hotspotObj); }