function Leadtools.Annotations.Automation.AnnAutomationManager.findObjectById( id )
Parameter | Type | Description |
---|---|---|
id | int | The id of the AnnAutomationObject to find. |
Type | Description |
---|---|
AnnAutomationObject | The AnnAutomationObject for the specified id, or null if no AnnAutomationObject with that id can be found. |
The possible values for id are:
This method enumerates all of the AnnAutomationObject items in the Objects collection and compares AnnAutomationObject.Id with id.
This example changes the line color of new line automation objects to blue:
example: function SiteLibrary_DefaultPage$example() { // find the line automation object var obj = this._automation.get_manager().findObjectById(Leadtools.Annotations.Core.AnnObject.lineObjectId); if (obj != null) { obj.get_objectTemplate().set_stroke(Leadtools.Annotations.Core.AnnStroke.create( Leadtools.Annotations.Core.AnnSolidColorBrush.create("blue"), Leadtools.LeadLengthD.create(2))); } },