Proprietà SelectedItem.ProjectItem
Ottiene l'oggetto ProjectItem associato all'oggetto specificato.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property ProjectItem As ProjectItem
ProjectItem ProjectItem { get; }
property ProjectItem^ ProjectItem {
ProjectItem^ get ();
}
abstract ProjectItem : ProjectItem with get
function get ProjectItem () : ProjectItem
Valore proprietà
Tipo: EnvDTE.ProjectItem
Oggetto ProjectItem.
Esempi
public void CodeExample(DTE2 dte)
{
try
{
// Open project and select one or more items in the
// solution explorer before running this example.
SelectedItem selItem;
string msg = "";
if (dte.SelectedItems.Count > 0)
{
selItem = dte.SelectedItems.Item(1);
msg = "The first selected item is " + selItem.Name;
msg += "\nThis SelectedItem corresponds to the following ProjectItem: " + selItem.ProjectItem.Name;
msg += "\nThis SelectedItem is part of a collection of " + selItem.Collection.Count.ToString() + " items.";
msg += "\nThis is contained in the following application: " + selItem.DTE.Name;
}
MessageBox.Show(msg);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione