AnnStickyNoteObject Object

Summary

Defines an annotation sticky note object.

Syntax

JavaScript Syntax
function lt.Annotations.Core.AnnStickyNoteObject 
	extends lt.Annotations.Core.AnnObject 
	implements IAnnObjectCloneable 
TypeScript Syntax
class lt.Annotations.Core.AnnStickyNoteObject() 
	extends lt.Annotations.Core.AnnObject 
	implements IAnnObjectCloneable 

Remarks

The sticky note object is a Picture rendered around single point (the center). This point is the first entry in the Points collection and all others are ignorred. This object does not support fill, stroke nor font.

This object supports using the SelectionStroke and by default when the value of IsSelected is true, it will use the stroke to draw a rectangle around the image instead of using a selection thumb.

With the automated functions, in design mode, the sticky point object is formed with a click or tap event.

Programmatically, the boundaries and location of the sticky note object can be controlled using the following properties: Each object can be transformed with the following methods: The AnnStickyNoteObject class inherits a number of properties from the AnnObject class, it does not support fill, stroke or font by overrides SupportsSelectionStroke to return true. The name of the sticky note object can be controlled using 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 AnnStickyNoteObject:

Example

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

JavaScript Example
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 lt.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 lt.Annotations.Core.AnnPicture("Resources/Objects/StickyNote.png")); 
   var pictureIndex = imagesResources.length - 1; 
 
   // assumes _automation is valid 
   var inch = 720.0; 
    
   // Add a sticky note object 
   var annObj = new lt.Annotations.Core.AnnStickyNoteObject(); 
    
   // Set the points for the hotspot 
   annObj.get_points().add(lt.LeadPointD.create(1 * inch, 1 * inch)); 
   annObj.get_points().add(lt.LeadPointD.create(2 * inch, 1 * inch)); 
   annObj.get_points().add(lt.LeadPointD.create(2 * inch, 2 * inch)); 
   annObj.get_points().add(lt.LeadPointD.create(1 * inch, 2 * inch)); 
    
   // Set the picture 
   annObj.set_defaultPicture(pictureIndex); 
    
   // Add the object to the automation container 
   this._automation.get_container().get_children().add(annObj); 
    
   // Select the object 
   this._automation.selectObject(annObj); 
} 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Core Assembly