Share via


InkAnalyzer.IsAnalyzing Property

Gets a value indicating whether the InkAnalyzer is performing ink analysis.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public ReadOnly Property IsAnalyzing As Boolean
'Usage
Dim instance As InkAnalyzer 
Dim value As Boolean 

value = instance.IsAnalyzing
public bool IsAnalyzing { get; }
public:
property bool IsAnalyzing {
    bool get ();
}
public function get IsAnalyzing () : boolean

Property Value

Type: System.Boolean
true if the ink analyzer is performing ink analysis; otherwise, false.

Remarks

This property is true if the ink analyzer is performing synchronous or asynchronous analysis.

Examples

This example starts background ink analysis on an InkAnalyzer, theInkAnalyzer, only if the ink analyzer is not currently performing ink analysis.

If Not theInkAnalyzer.IsAnalyzing Then 
    Dim started As Boolean = theInkAnalyzer.BackgroundAnalyze()
End If
if (!theInkAnalyzer.IsAnalyzing)
{
    bool started = theInkAnalyzer.BackgroundAnalyze();
}

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

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

InkAnalyzer Class

InkAnalyzer Members

Microsoft.Ink Namespace

InkAnalyzer.Analyze

InkAnalyzer.BackgroundAnalyze