指定した ContextNodeBase オブジェクトの子孫である、指定した型の ContextNodeBase オブジェクト。
名前空間 : System.Windows.Ink.AnalysisCore
アセンブリ : IACore (IACore.dll 内)
構文
'宣言
Public Function FindNodesOfType ( _
type As Guid, _
node As ContextNodeBase _
) As ContextNodeBaseCollection
'使用
Dim instance As InkAnalyzerBase
Dim type As Guid
Dim node As ContextNodeBase
Dim returnValue As ContextNodeBaseCollection
returnValue = instance.FindNodesOfType(type, _
node)
public ContextNodeBaseCollection FindNodesOfType(
Guid type,
ContextNodeBase node
)
public:
ContextNodeBaseCollection^ FindNodesOfType(
Guid type,
ContextNodeBase^ node
)
public ContextNodeBaseCollection FindNodesOfType(
Guid type,
ContextNodeBase node
)
public function FindNodesOfType(
type : Guid,
node : ContextNodeBase
) : ContextNodeBaseCollection
パラメータ
- type
型 : System.Guid
検出する ContextNodeBase オブジェクトの型。
- node
型 : System.Windows.Ink.AnalysisCore.ContextNodeBase
子孫を探す ContextNodeBase オブジェクト。
戻り値
型 : System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection
指定した ContextNodeBase の子孫である、指定した型の ContextNodeBase オブジェクト。
例
次の例では、ContextNodeBase、theContextNode の子孫である、InkAnalyzerBase、theInkAnalyzerBase 内のすべてのライン ノードを検出します。
Dim lineNodes As System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection = _
theInkAnalyzerBase.FindNodesOfType( _
System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line, theContextNode)
System.Windows.Ink.AnalysisCore.ContextNodeBaseCollection lineNodes =
theInkAnalyzerBase.FindNodesOfType(
System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line, theContextNode);
プラットフォーム
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0
参照
参照
System.Windows.Ink.AnalysisCore 名前空間