다음을 통해 공유


InkAnalyzerBase.FindNodesOfType 메서드 (Guid, array<Int32[])

업데이트: 2007년 11월

지정된 스트로크 식별자 배열에 식별자가 있는 모든 스트로크를 포함하는 지정된 형식의 ContextNodeBase 개체를 반환합니다.

네임스페이스:  System.Windows.Ink.AnalysisCore
어셈블리:  IACore(IACore.dll)

구문

‘선언
Public Function FindNodesOfType ( _
    type As Guid, _
    strokeIds As Integer() _
) As ContextNodeBaseCollection
‘사용 방법
Dim instance As InkAnalyzerBase
Dim type As Guid
Dim strokeIds As Integer()
Dim returnValue As ContextNodeBaseCollection

returnValue = instance.FindNodesOfType(type, _
    strokeIds)
public ContextNodeBaseCollection FindNodesOfType(
    Guid type,
    int[] strokeIds
)
public:
ContextNodeBaseCollection^ FindNodesOfType(
    Guid type, 
    array<int>^ strokeIds
)
public ContextNodeBaseCollection FindNodesOfType(
    Guid type,
    int[] strokeIds
)
public function FindNodesOfType(
    type : Guid, 
    strokeIds : int[]
) : ContextNodeBaseCollection

매개 변수

  • type
    형식: System.Guid
    찾을 컨텍스트 노드의 형식입니다.
  • strokeIds
    형식: array<System.Int32[]
    스트로크 식별자가 들어 있는 배열입니다.

반환 값

형식: System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection
strokeIds에 식별자가 있는 모든 스트로크를 포함하는 지정된 형식의 컨텍스트 노드를 포함하는 ContextNodeBaseCollection입니다.

설명

노드 또는 해당 하위 노드 중 하나가 strokeIds에 지정된 스트로크를 참조하는 경우 이 메서드의 반환 값에 해당 노드가 포함됩니다.

예제

다음 예제에서는 InkAnalyzerBase인 theInkAnalyzerBase에서 theStrokeIds 배열에서 식별된 스트로크를 포함하는 모든 줄 노드를 찾습니다.

Dim lineNodes As System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection = _
    theInkAnalyzerBase.FindNodesOfType( _
        System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line, theStrokeIds)
System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection lineNodes =
    theInkAnalyzerBase.FindNodesOfType(
        System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line, theStrokeIds);

플랫폼

Windows Vista, Windows XP SP2, Windows Server 2003

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

InkAnalyzerBase 클래스

InkAnalyzerBase 멤버

FindNodesOfType 오버로드

System.Windows.Ink.AnalysisCore 네임스페이스

InkAnalyzerBase.FindInkLeafNodes

InkAnalyzerBase.FindLeafNodes

InkAnalyzerBase.FindNode

InkAnalyzerBase.FindNodes