Gets or sets the current automation object id.
Syntax
Visual Basic (Declaration) | |
---|
Public Property CurrentObjectId As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnAutomationManager
Dim value As Integer
instance.CurrentObjectId = value
value = instance.CurrentObjectId |
C# | |
---|
public int CurrentObjectId {get; set;} |
C++/CLI | |
---|
public:
property int CurrentObjectId {
int get();
void set ( int value);
} |
Property Value
The current automation object id.
Example
This example sets the line object as the current automation object.
Visual Basic | Copy Code |
---|
Public 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 |
C# | Copy Code |
---|
public void AnnAutomationManager_CurrentObjectId(AnnAutomationManager manager)
{
// if you are using the automation toolbar, notice the line button gets selected as well
manager.CurrentObjectId = AnnAutomationManager.LineObjectId;
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also