InkAnalyzer.ReadyToReconcile Event
Assembly: Microsoft.Ink.Analysis (in microsoft.ink.analysis.dll)
'Declaration Public Event ReadyToReconcile As ReadyToReconcileEventHandler 'Usage Dim instance As InkAnalyzer Dim handler As ReadyToReconcileEventHandler AddHandler instance.ReadyToReconcile, handler
/** @event */ public void add_ReadyToReconcile (ReadyToReconcileEventHandler value) /** @event */ public void remove_ReadyToReconcile (ReadyToReconcileEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The InkAnalyzer performs automatic reconciliation when the AnalysisModes property has the AnalysisModes flag AutomaticReconciliationEnabled set. When the AutomaticReconciliationEnabled flag is not set, your application needs to reconcile background analysis results manually.
To handle manual reconciliation, follow these steps.
-
Clear the AutomaticReconciliationEnabled flag in the AnalysisModes property of the InkAnalyzer.
-
Add an event handler for the ReadyToReconcile event.
-
To reconcile the analysis results, call the Reconcile method from the event handler for the ReadyToReconcile event. To cancel the current background analysis operation, call the Abort method from the event handler for the ReadyToReconcile event.
The ink analyzer raises this event before it raises the InkAnalyzerStateChanging event.
For more information about synchronizing your application data with the InkAnalyzer, see Data Proxy with Ink Analysis.
The ink analyzer raises this event during background analysis.
The following example defines a method, theInkAnalyzer_ReadyToReconcile, that handles the ReadyToReconcile event of an InkAnalyzer. If the Boolean value abortAnalysis is set, theInkAnalyzerBase_ReadyToReconcile aborts the analysis operation. Otherwise, it performs manual reconciliation and continues with the analysis operation.
''' <summary> ''' Handles the StrokeReparentedBase event of an InkAnalyzerBase. ''' </summary> ''' <param name="sender">The source of the event.</param> ''' <param name="e">The event data.</param> Sub theInkAnalyzer_ReadyToReconcile( _ ByVal sender As Object, _ ByVal e As EventArgs) ' The source is an InkAnalyzerBase. Dim theInkAnalyzerBase As Microsoft.Ink.InkAnalyzer = _ DirectCast(sender, Microsoft.Ink.InkAnalyzer) ' Check whether or not to abort analysis before continuing. If Me.abortAnalysis Then ' Abort analysis and update the analyzer's dirty region. Dim unanalyzedRegion As Microsoft.Ink.AnalysisRegion = _ theInkAnalyzerBase.Abort() theInkAnalyzerBase.DirtyRegion.Union(unanalyzedRegion) Else ' Manually reconcile the analysis results for this analysis phase. theInkAnalyzerBase.Reconcile() End If End Sub 'theInkAnalyzer_ReadyToReconcile
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.