IVstaHostItem.ItemBaseType Property
Gets or sets the name of the base type that the type represented by the HostItem derives from.
Namespace: Microsoft.VisualStudio.Tools.Applications.ProgrammingModel.Interop
Assembly: Microsoft.VisualStudio.Tools.Applications.ProgrammingModel (in Microsoft.VisualStudio.Tools.Applications.ProgrammingModel.dll)
Syntax
'Declaration
Property ItemBaseType As String
'Usage
Dim instance As IVstaHostItem
Dim value As String
value = instance.ItemBaseType
instance.ItemBaseType = value
string ItemBaseType { get; set; }
property String^ ItemBaseType {
String^ get ();
void set (String^ value);
}
function get ItemBaseType () : String
function set ItemBaseType (value : String)
Property Value
Type: System.String
The name of the base type.
Remarks
If the host item is called Circle.cs and the file defines a class called Circle that inherits from a class called Shape, the ItemBaseType is Shape.
.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.Tools.Applications.ProgrammingModel.Interop Namespace