Condividi tramite


Proprietà _DTE.Properties

Restituisce un insieme Properties che rappresenta tutte le categorie e le sottocategorie disponibili presenti nella finestra di dialogo Opzioni del menu Strumenti.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
ReadOnly Property Properties ( _
    Category As String, _
    Page As String _
) As Properties
    Get
Properties this[
    string Category,
    string Page
] { get; }
property Properties^ Properties[String^ Category, String^ Page] {
    Properties^ get (String^ Category, String^ Page);
}
abstract Properties : Properties
JScript non supporta le proprietà indicizzate.

Parametri

  • Category
    Tipo: System.String
    Obbligatorio.Il nome della categoria della proprietà, ad esempio Generale o Editor di testo.
  • Page
    Tipo: System.String
    Facoltativo.Nome della pagina delle proprietà all'interno della Category assegnata, ad esempio Tastiera.

Valore proprietà

Tipo: EnvDTE.Properties
Insieme Properties contenente tutte le categorie e le sottocategorie disponibili nell'IDE.

Note

Le proprietà a livello di ambiente sono organizzate in categorie. All'interno di ogni categoria è disponibile un insieme Properties per ogni package o servizio che contribuisce all'ambiente.

Se l'insieme di proprietà specificato non è disponibile, Properties restituisce NULL.

Esempi

Sub PropertiesExample()
  MsgBox(DTE.Properties("Environment", "General").Count)
End Sub

Sicurezza di .NET Framework

Vedere anche

Riferimenti

_DTE Interfaccia

Spazio dei nomi EnvDTE