Property, interface
Représente une propriété appartenant à la collection générique de propriétés d'un objet donné.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
<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
Le type Property expose les membres suivants.
Propriétés
Nom | Description | |
---|---|---|
Application | Infrastructure. Réservé à un usage interne Microsoft. | |
Collection | Obtient la Collection contenant l'objet Property qui prend en charge cette propriété. | |
DTE | Obtient l'objet d'extensibilité de niveau supérieur. | |
IndexedValue | Retourne un élément d'une liste. | |
Name | Obtient le nom de l'objet. | |
NumIndices | Obtient le nombre d'index requis pour accéder à la valeur. | |
Object | Définit ou obtient l'objet prenant en charge l'objet Property. | |
Parent | Infrastructure. Réservé à un usage interne Microsoft. | |
Value | Obtient ou définit la valeur de la propriété retournée par l'objet Property. |
Début
Méthodes
Nom | Description | |
---|---|---|
let_Value | Fonction accesseur Set permettant de définir des valeurs de propriété. |
Début
Exemples
' 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