ContextLinkCollection.Contains 메서드
업데이트: 2007년 11월
ContextLinkCollection에 특정 ContextLink 개체가 들어 있는지 여부를 나타냅니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public Function Contains ( _
link As ContextLink _
) As Boolean
‘사용 방법
Dim instance As ContextLinkCollection
Dim link As ContextLink
Dim returnValue As Boolean
returnValue = instance.Contains(link)
public bool Contains(
ContextLink link
)
public:
bool Contains(
ContextLink^ link
)
public boolean Contains(
ContextLink link
)
public function Contains(
link : ContextLink
) : boolean
매개 변수
- link
형식: Microsoft.Ink.ContextLink
검색할 ContextLink 개체입니다.
반환 값
형식: System.Boolean
ContextLinkCollection 에 특정 ContextLink 개체가 들어 있는지 여부입니다.
예제
다음 예제에서는 ContextLinkCollection인 links에 특정 ContextLink인 myLink가 들어 있는지 여부를 확인하는 방법을 보여 줍니다.
If links.Contains(myLink) Then
MessageBox.Show("The link is in the collection.")
End If
if (links.Contains(myLink))
{
MessageBox.Show("The link is in the collection.");
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원