다음을 통해 공유


ExtendedProperties.Item 속성 (Guid)

업데이트: 2007년 11월

ExtendedProperties 컬렉션 내에서 지정된 인덱스에 있는 ExtendedProperty 개체를 가져옵니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink(Microsoft.Ink.dll)

구문

‘선언
Public ReadOnly Property Item ( _
    id As Guid _
) As ExtendedProperty
‘사용 방법
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에서는 인덱싱된 속성을 지원하지 않습니다.

매개 변수

속성 값

형식: Microsoft.Ink.ExtendedProperty
ExtendedProperties 컬렉션 내에서 지정된 인덱스에 있는 ExtendedProperty 개체입니다.

설명

인덱스가 ExtendedProperties 컬렉션의 기존 멤버와 일치하지 않으면 ArgumentOutOfRangeException이 throw됩니다.

참고

C#에서는 컬렉션의 Item 속성을 사용하는 대신 컬렉션의 인덱서를 사용합니다.

예제

이 예제에서는 Stroke 개체의 ExtendedProperties 컬렉션에서 Guid인 epGuid를 사용하여 ExtendedProperty 개체를 가져옵니다.

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];

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

ExtendedProperties 클래스

ExtendedProperties 멤버

Item 오버로드

Microsoft.Ink 네임스페이스

ExtendedProperty