InkAnalyzer.SaveResults Method (ContextNodeCollection)
Saves analysis results for a specific context node collection associated with an ink analyzer.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in microsoft.ink.analysis.dll)
Syntax
'Declaration
Public Function SaveResults ( _
nodes As ContextNodeCollection _
) As Byte()
'Usage
Dim instance As InkAnalyzer
Dim nodes As ContextNodeCollection
Dim returnValue As Byte()
returnValue = instance.SaveResults(nodes)
public byte[] SaveResults (
ContextNodeCollection nodes
)
public:
array<unsigned char>^ SaveResults (
ContextNodeCollection^ nodes
)
public byte[] SaveResults (
ContextNodeCollection nodes
)
public function SaveResults (
nodes : ContextNodeCollection
) : byte[]
Not applicable.
Parameters
- nodes
The context node collection for which to save analysis results.
Return Value
An 8-bit unsigned integer array that contains the saved analysis results.
Remarks
This method saves the current analysis results for nodes and for all of their ancestor and descendant context nodes.
This method throws an exception when any context node in nodes has a ContextNode.PartiallyPopulated value of true.
Example
This example saves all the analysis results for the ContextNodeCollection, theSelectedNodes
. theInkAnalyzer
is the InkAnalyzer that contains theSelectedNodes
. theSavedResults
is an 8-bit unsigned integer array and stores the saved analysis results.
' Save the results for the selected context nodes.
theSavedResults = Me.theInkAnalyzer.SaveResults(theSelectedNodes)
// Save the results for the selected context nodes.
theSavedResults = this.theInkAnalyzer.SaveResults(theSelectedNodes);
Platforms
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
InkAnalyzer Class
InkAnalyzer Members
Microsoft.Ink Namespace
InkAnalyzer.Ink
Microsoft.Ink.InkAnalyzer.Load
Microsoft.Ink.ContextNode
Microsoft.Ink.Ink