AddIn.Name Property
Gets the name of the AddIn object.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property Name As String
string Name { get; }
property String^ Name {
String^ get ();
}
abstract Name : string with get
function get Name () : String
Property Value
Type: System.String
A string representing the name of the AddIn object.
Examples
public void AddinCollExample(AddIn addIn)
{
// For this example to work, there should be an add-in
// available in the Visual Studio enviroment.
string peers = "";
// Retrieve all peer elements of the addin.
foreach (AddIn someAddin in addIn.Collection)
{
if ((someAddin != addIn) && (someAddin.Name != null))
peers += someAddin.Name + "\n";
}
MessageBox.Show(addIn.Name + " has the following peer elements:\n\n" + peers);
}
.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
Other Resources
How to: Compile and Run the Automation Object Model Code Examples