Propriedade DTE2.SelectedItems
Obtém uma coleção que contém os itens atualmente selecionados no ambiente.
Namespace: EnvDTE80
Assembly: EnvDTE80 (em EnvDTE80.dll)
Sintaxe
'Declaração
ReadOnly Property SelectedItems As SelectedItems
SelectedItems SelectedItems { get; }
property SelectedItems^ SelectedItems {
SelectedItems^ get ();
}
abstract SelectedItems : SelectedItems
function get SelectedItems () : SelectedItems
Valor de propriedade
Tipo: EnvDTE.SelectedItems
A SelectedItems coleção.
Exemplos
Sub SelectedItemsExample(ByVal dte As DTE2)
' Before running this example, open a project and select some items
' in Solution Explorer.
Dim item As SelectedItem
Dim msg As String
For Each item In dte.SelectedItems
msg &= item.Name & vbCrLf
Next
MsgBox("The following items are selected in Solution Explorer:" & _
vbCrLf & vbCrLf & msg)
End Sub
public void SelectedItemsExample(DTE2 dte)
{
// Before running this example, open a project and select some
// items in Solution Explorer.
string msg = "";
foreach (SelectedItem item in dte.SelectedItems)
msg += item.Name + "\n";
MessageBox.Show(
"The following items are selected in Solution Explorer:\n\n" +
msg);
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.
Consulte também
Referência
Outros recursos
Como: compilar e executar os exemplos de código de modelo de objeto de automação