Leadtools.Annotations Namespace > AnnAutomationManager Class : FindObject Method |
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 )
function Leadtools.Annotations.AnnAutomationManager.FindObject( id )
public: AnnAutomationObject^ FindObject( int id )
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
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)); }
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