ExtendedProperties.Item, propriété (Guid)
Mise à jour : November 2007
Obtient l'objet ExtendedProperty à l'index spécifié dans la collection ExtendedProperties.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public ReadOnly Property Item ( _
id As Guid _
) As ExtendedProperty
'Utilisation
Dim instance As ExtendedProperties
Dim id As Guid
Dim value As ExtendedProperty
value = instance.Item(id)
public ExtendedProperty Item[
Guid id
] { get; }
public:
property ExtendedProperty^ Item[Guid id] {
ExtendedProperty^ get (Guid id);
}
/** @property */
public ExtendedProperty get_Item(
Guid id
)
JScript ne prend pas en charge les propriétés indexées.
Paramètres
- id
Type : System.Guid
Index de base zéro de l'objet ExtendedProperty à obtenir.
Valeur de propriété
Type : Microsoft.Ink.ExtendedProperty
Objet ExtendedProperty à l'index spécifié dans la collection ExtendedProperties.
Notes
Une exception ArgumentOutOfRangeException (page pouvant être en anglais) est levée si l'index ne correspond pas à un membre existant de la collection ExtendedProperties.
Remarque : |
---|
En C#, utilisez l'indexeur de collection et non la propriété de la collection Item. |
Exemples
Dans cet exemple, un objet ExtendedProperty est récupéré de la collection ExtendedProperties d'un objet Stroke à l'aide d'un Guid, epGuid.
Dim exProp As ExtendedProperty = stroke.ExtendedProperties.Item(epGuid)
' another way to access the item
Dim exPropSame As ExtendedProperty = stroke.ExtendedProperties(epGuid)
ExtendedProperty exProp = stroke.ExtendedProperties[epGuid];
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0