Sdílet prostřednictvím


InkAnalyzerBase.IsAnalyzing Property

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

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public ReadOnly Property IsAnalyzing As Boolean
'Usage
Dim instance As InkAnalyzerBase 
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 InkAnalyzerBase, theInkAnalyzerBase, only if the ink analyzer is not currently performing ink analysis.

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

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

InkAnalyzerBase Class

InkAnalyzerBase Members

System.Windows.Ink.AnalysisCore Namespace

InkAnalyzerBase.Analyze

InkAnalyzerBase.BackgroundAnalyze