LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)
LEAD Technologies, Inc

CurrentObjectId Property

Example 





Gets or sets the current automation object ID. .NET support Silverlight support
Syntax
public int CurrentObjectId {get; set;}
'Declaration
 
Public Property CurrentObjectId As Integer
'Usage
 
Dim instance As AnnAutomationManager
Dim value As Integer
 
instance.CurrentObjectId = value
 
value = instance.CurrentObjectId
public int CurrentObjectId {get; set;}
 get_CurrentObjectId();
set_CurrentObjectId(value);
public:
property int CurrentObjectId {
   int get();
   void set (    int value);
}

Property Value

The current automation object ID.
Remarks

The current automation object ID is the AnnAutomationObject.Id of the AnnAutomationObject currently selected in the ToolBar. This object is the "active" object to be drawn on the current active AnnAutomation. You can change the value of this property programmatically. It also changes when the user clicks on the buttons of the automation ToolBar.

The CurrentObjectIdChanged event is fired when this property is changed

Example
Copy CodeCopy Code  
Private Sub AnnAutomationManager_CurrentObjectId(ByVal manager As AnnAutomationManager)
   ' if you are using the automation toolbar, notice the line button gets selected as well
   manager.CurrentObjectId = AnnAutomationManager.LineObjectId
End Sub
private void AnnAutomationManager_CurrentObjectId(AnnAutomationManager manager)
{
   // if you are using the automation toolbar, notice the line button gets selected as well
   manager.CurrentObjectId = AnnAutomationManager.LineObjectId;
}
private void AnnAutomationManager_CurrentObjectId(AnnAutomationManager manager)
{
   // if you are using the automation toolbar, notice the line button gets selected as well
   manager.CurrentObjectId = AnnAutomationManager.LineObjectId;
}
Private Sub AnnAutomationManager_CurrentObjectId(ByVal manager As AnnAutomationManager)
   ' if you are using the automation toolbar, notice the line button gets selected as well
   manager.CurrentObjectId = AnnAutomationManager.LineObjectId
End Sub
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.