DialogPage.AutomationObject Property
Gets the DTE automation model object for a given instance of a dialog page class.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public Overridable ReadOnly Property AutomationObject As Object
[BrowsableAttribute(false)]
public virtual Object AutomationObject { get; }
[BrowsableAttribute(false)]
public:
virtual property Object^ AutomationObject {
Object^ get ();
}
[<BrowsableAttribute(false)>]
abstract AutomationObject : Object with get
[<BrowsableAttribute(false)>]
override AutomationObject : Object with get
function get AutomationObject () : Object
Property Value
Type: System.Object
An instance of the automation object, or null if no automation support is available.
Remarks
AutomationObject is a read-only property.
By default, because a DialogPage implementation is a DTE automation object, this (the current object) is returned.
The properties shown by the default display mechanism and persisted by the Visual Studio settings implementation are determined by the properties of the automation object that is returned by this method. If AutomationObject returns an object other than this, the properties of that returned class, and not the properties of the implementing class, are displayed.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Shell Namespace