InkAnalyzerBase.FindNodesOfType Method (Guid)
Returns all ContextNodeBase objects of the specified type.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Function FindNodesOfType ( _
type As Guid _
) As ContextNodeBaseCollection
'Usage
Dim instance As InkAnalyzerBase
Dim type As Guid
Dim returnValue As ContextNodeBaseCollection
returnValue = instance.FindNodesOfType(type)
public ContextNodeBaseCollection FindNodesOfType(
Guid type
)
public:
ContextNodeBaseCollection^ FindNodesOfType(
Guid type
)
public function FindNodesOfType(
type : Guid
) : ContextNodeBaseCollection
Parameters
type
Type: System.GuidThe type of ContextNodeBase object to find.
Return Value
Type: System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection
The ContextNodeBase objects of the specified type that are in the node tree of the InkAnalyzerBase.
Examples
The following example finds all the line nodes in an InkAnalyzerBase, theInkAnalyzerBase.
Dim lineNodes As System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection = _
theInkAnalyzerBase.FindNodesOfType( _
System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line)
System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection lineNodes =
theInkAnalyzerBase.FindNodesOfType(
System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line);
Platforms
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
System.Windows.Ink.AnalysisCore Namespace