Visual Basic (Declaration) | |
---|---|
Public Overridable Property Active As Boolean |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public virtual bool Active {get; set;} |
Managed Extensions for C++ | |
---|---|
public: __property virtual bool get_Active(); public: __property virtual void set_Active( bool value ); |
Return Value
true if this AnnAutomation is active; false otherwise.The collection of AnnAutomation objects inside a AnnAutomationManager should have one AnnAutomation object active at any time. The active AnnAutomation object is the object to which all user interface actions are directed.
If the automated annotation application has only one AnnAutomation object, it should set the Active property of this AnnAutomation to true upon initilization. No further changes are necessary. For example, you can subscribe to the MdiChildActivate event of the main form in your application and set the Active property to true for the AnnAutomation object associated with the currently active MDI child form.
If the automated annotation application has more than one AnnAutomation, it should set the Active property of the AnnAutomation attached to the currently active form to true.
Setting the Active value of one AnnAutomation in the Automations property to true, will cause the Active property of all other AnnAutomation objects inside this collection to be set to false.
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family