InkAnalyzerBase.AnalysisModes-Eigenschaft
Ruft Flags ab, die kontrollieren, wie das Freihandanalysemodul die Freihandanalyse ausführt, oder legt Flags fest.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Property AnalysisModes As AnalysisModes
'Usage
Dim instance As InkAnalyzerBase
Dim value As AnalysisModes
value = instance.AnalysisModes
instance.AnalysisModes = value
public AnalysisModes AnalysisModes { get; set; }
public:
property AnalysisModes AnalysisModes {
AnalysisModes get ();
void set (AnalysisModes value);
}
/** @property */
public AnalysisModes get_AnalysisModes()
/** @property */
public void set_AnalysisModes(AnalysisModes value)
public function get AnalysisModes () : AnalysisModes
public function set AnalysisModes (value : AnalysisModes)
Eigenschaftenwert
Typ: System.Windows.Ink.AnalysisCore.AnalysisModes
Eine bitweise Kombination der System.Windows.Ink.AnalysisCore.AnalysisModes-Enumerationswerte.
Beispiele
In diesem Beispiel wird eine neue InkAnalyzerBase mit dem Namen theInkAnalyzerBase initialisiert. Dann wird die AnalysisModes-Eigenschaft festgelegt und ein UpdateStrokesCacheBase-Ereignishandler angefügt.
' Create the ink analyzer and enable automatic reconciliation and
' automatic stroke cache cleanup, but not intermediate results.
Dim theInkAnalyzerBase As New System.Windows.Ink.AnalysisCore.InkAnalyzerBase()
theInkAnalyzerBase.AnalysisModes = _
System.Windows.Ink.AnalysisCore.AnalysisModes.AutomaticReconciliationEnabled _
Or System.Windows.Ink.AnalysisCore.AnalysisModes.StrokeCacheAutoCleanupEnabled
' Since automatic stroke cache cleanup is enabled, add an event
' handler for the UpdateStrokesCacheBase event.
AddHandler theInkAnalyzerBase.UpdateStrokesCacheBase, _
AddressOf theInkAnalyzerBase_UpdateStrokesCacheBase
// Create the ink analyzer and enable automatic reconciliation and
// automatic stroke cache cleanup, but not intermediate results.
System.Windows.Ink.AnalysisCore.InkAnalyzerBase theInkAnalyzerBase =
new System.Windows.Ink.AnalysisCore.InkAnalyzerBase();
theInkAnalyzerBase.AnalysisModes =
System.Windows.Ink.AnalysisCore.AnalysisModes.AutomaticReconciliationEnabled
| System.Windows.Ink.AnalysisCore.AnalysisModes.StrokeCacheAutoCleanupEnabled;
// Since automatic stroke cache cleanup is enabled, add an event
// handler for the UpdateStrokesCacheBase event.
theInkAnalyzerBase.UpdateStrokesCacheBase +=
new System.Windows.Ink.AnalysisCore.UpdateStrokesCacheBaseEventHandler(
theInkAnalyzerBase_UpdateStrokesCacheBase);
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
System.Windows.Ink.AnalysisCore-Namespace