Error processing SSI file
LEADTOOLS Annotations (Leadtools.Annotations assembly)

Show in webframe

FindObject Method






The id of the AnnAutomationObject to find
Finds the AnnAutomationObject associated with a certain id.
Syntax
public AnnAutomationObject FindObject( 
   int id
)
'Declaration
 
Public Function FindObject( _
   ByVal id As Integer _
) As AnnAutomationObject
'Usage
 
Dim instance As AnnAutomationManager
Dim id As Integer
Dim value As AnnAutomationObject
 
value = instance.FindObject(id)

            

            
public:
AnnAutomationObject^ FindObject( 
   int id
) 

Parameters

id
The id of the AnnAutomationObject to find

Return Value

The AnnAutomationObject from Objects for this id if found; null (Nothing in Visual Basic) otherwise.
Remarks
This method enumerates all of the AnnAutomationObject items in the Objects collection and compares AnnAutomationObject.Id with id.
Example

This example changes the line color of new line automation objects to blue.

Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.WinForms
Imports Leadtools.Codecs

Public Sub AnnAutomationManager_FindObject(ByVal manager As AnnAutomationManager)
   ' fine the line automation object
   Dim obj As AnnAutomationObject = manager.FindObject(AnnAutomationManager.LineObjectId)
   If Not obj Is Nothing Then
      obj.Object.Pen = New AnnPen(Color.Blue, New AnnLength(1, AnnUnit.Pixel))
   End If
End Sub
using Leadtools;
using Leadtools.Annotations;
using Leadtools.WinForms;
using Leadtools.Codecs;

public void AnnAutomationManager_FindObject(AnnAutomationManager manager)
{
  // fine the line automation object
  AnnAutomationObject obj = manager.FindObject(AnnAutomationManager.LineObjectId);
  if(obj != null)
     obj.Object.Pen = new AnnPen(Color.Blue, new AnnLength(1, AnnUnit.Pixel));
}
Requirements

Target Platforms

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

Error processing SSI file
(Deprecated, use Leadtools.Annotations.Core instead)