LEADTOOLS WinRT (Leadtools.Annotations.Automation)
LEAD Technologies, Inc

FindObjectById Method

Example 

The id of the AnnAutomationObject to find.
Finds the specified AnnAutomationObject. WinRT support
Syntax
public AnnAutomationObject FindObjectById( 
   int id
)
 function Leadtools.Annotations.Automation.AnnAutomationManager.FindObjectById( 
   id 
)

Parameters

id
The id of the AnnAutomationObject to find.

Return Value

The AnnAutomationObject for the specified id, or null if no AnnAutomationObject with that id can be found.
Remarks

The possible values for id are:

This method enumerates all of the AnnAutomationObject items in the Objects collection and compares AnnAutomationObject.Id with id.

Example
 
[TestMethod]
public void AnnAutomationManager_FindObjectById()
{
   // find the line automation object
   AnnAutomationObject obj = _automation.Manager.FindObjectById(AnnObject.LineObjectId);
   if (obj != null)
   {
      obj.ObjectTemplate.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthDHelper.Create(2));
   }
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

 

 


Products | Support | Contact Us | Copyright Notices

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