Interfaccia Property
Rappresenta una proprietà di un insieme generico di proprietà per un determinato oggetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
<GuidAttribute("7B988E06-2581-485E-9322-04881E0600D0")> _
Public Interface Property
[GuidAttribute("7B988E06-2581-485E-9322-04881E0600D0")]
public interface Property
[GuidAttribute(L"7B988E06-2581-485E-9322-04881E0600D0")]
public interface class Property
[<GuidAttribute("7B988E06-2581-485E-9322-04881E0600D0")>]
type Property = interface end
public interface Property
Il tipo Property espone i seguenti membri.
Proprietà
Nome | Descrizione | |
---|---|---|
Application | Infrastruttura. Solo per utilizzo interno di Microsoft. | |
Collection | Ottiene l'insieme Collection contenente l'oggetto Property che supporta la proprietà. | |
DTE | Ottiene l'oggetto estensibilità di primo livello. | |
IndexedValue | Restituisce un elemento di un elenco. | |
Name | Ottiene il nome dell'oggetto. | |
NumIndices | Ottiene il numero di indici necessari per accedere al valore. | |
Object | Ottiene o imposta l'oggetto che supporta l'oggetto Property. | |
Parent | Infrastruttura. Solo per utilizzo interno di Microsoft. | |
Value | Ottiene o imposta il valore della proprietà restituita dall'oggetto Property. |
In alto
Metodi
Nome | Descrizione | |
---|---|---|
let_Value | Funzione Set per impostare i valori delle proprietà. |
In alto
Esempi
' Visual Studio macro.
Sub PropertyExample()
Dim Props As Properties
Dim PropObj As [Property]
Dim NameValPair As String
Props = DTE.Properties("Environment", "General")
MsgBox("Tools – Options – Environment – General Properties Count _
= " & Props.Count())
For Each PropObj In Props
NameValPair = NameValPair & (PropObj.Name & "Value = " & _
PropObj.Value & microsoft.VisualBasic.ControlChars.CrLf)
Next
MsgBox(NameValPair)
End Sub