LEADTOOLS JavaScript (Leadtools.Annotations.Core)
LEAD Technologies, Inc

Labels Property (AnnObject)

Example 

Gets a dictionary of AnnLabel objects used by this AnnObject.
Syntax
  get_labels();  
!MISSING Scrap '_RTJavaScript_PROPERTY_SYNTAX'!

Property Value

TypeDescription
DictionaryA dictionary of the AnnLabel objects used by this AnnObject.
Remarks

By default, AnnObject creates a default AnnLabel object with AnnLabel.IsVisible set to false and adds it to Labels with key name equals to "AnnObjectName".

Example
example: function SiteLibrary_DefaultPage$example() {
   var inch = 720.0;

   // Get the container
   var container = this._automation.get_container();

   // Add a blue on yellow rectangle from 1in 1in to 2in 2in
   var rectObj = new Leadtools.Annotations.Core.AnnRectangleObject();
   rectObj.set_rect(Leadtools.LeadRectD.create(1 * inch, 1 * inch, 1 * inch, 1 * inch));
   rectObj.set_stroke(Leadtools.Annotations.Core.AnnStroke.create(Leadtools.Annotations.Core.AnnSolidColorBrush.create("blue"), Leadtools.LeadLengthD.create(1)));
   rectObj.set_fill(Leadtools.Annotations.Core.AnnSolidColorBrush.create("yellow"));
   rectObj.set_hyperlink("http://www.leadtools.com/downloads/demos.htm");

   // Update the object name label
   var label = rectObj.get_labels()["AnnObjectName"];
   label.set_isVisible(true);
   label.set_offset(Leadtools.LeadPointD.create(-100, -25));
   label.set_foreground(Leadtools.Annotations.Core.AnnSolidColorBrush.create("white"));
   label.set_background(Leadtools.Annotations.Core.AnnSolidColorBrush.create("rgba(0, 0, 0, 0.5)"));
   label.set_text("My object");

   // Add it to the container
   container.get_children().add(rectObj);

   this._automation.invalidate(Leadtools.LeadRectD.get_empty());
},
See Also

Reference

AnnObject Object
AnnObject Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.