Proprietà InkAnalyzerBase.AnalysisModes
Aggiornamento: novembre 2007
Ottiene o imposta i flag che controllano la modalità di analisi dell'input penna eseguita dall'analizzatore dell'input penna.
Spazio dei nomi: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Sintassi
'Dichiarazione
Public Property AnalysisModes As AnalysisModes
'Utilizzo
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)
Valore proprietà
Tipo: System.Windows.Ink.AnalysisCore.AnalysisModes
Combinazione bit per bit dei valori di enumerazione di System.Windows.Ink.AnalysisCore.AnalysisModes.
Esempi
In questo esempio viene inizializzato un nuovo oggetto InkAnalyzerBase, theInkAnalyzerBase. Viene quindi impostata la proprietà AnalysisModes e viene associato un gestore dell'evento UpdateStrokesCacheBase.
' 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);
Piattaforme
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
Spazio dei nomi System.Windows.Ink.AnalysisCore