Proprietà ResultsUpdatedEventArgs.Status
Aggiornamento: novembre 2007
Ottiene lo stato dell'operazione in background appena completata.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property Status As AnalysisStatus
'Utilizzo
Dim instance As ResultsUpdatedEventArgs
Dim value As AnalysisStatus
value = instance.Status
public AnalysisStatus Status { get; }
public:
property AnalysisStatus^ Status {
AnalysisStatus^ get ();
}
/** @property */
public AnalysisStatus get_Status()
public function get Status () : AnalysisStatus
Valore proprietà
Tipo: Microsoft.Ink.AnalysisStatus
Stato dell'operazione in background appena completata.
Esempi
Nell'esempio seguente viene definito il metodo, ResultsAvailable, che gestisce gli eventi IntermediateResultsUpdated e ResultsUpdated. Le informazioni relative all'evento vengono passate all'oggetto modello di documento, theDocumentModel.
In questo esempio non viene fornita la definizione del modello di documento né viene illustrato come vengono elaborate le informazioni passate a tale modello.
'/ <summary>
'/ Handles the InkAnalyzer.Results and InkAnalyzer.IntermediateResults events.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
Private Sub ResultsAvailable( _
ByVal sender As Object, _
ByVal e As Microsoft.Ink.ResultsUpdatedEventArgs)
If e.Status.Successful Then
Me.theDocumentModel.ResultsAvailable(CType(sender, Microsoft.Ink.InkAnalyzer))
End If
End Sub 'ResultsAvailable
/// <summary>
/// Handles the InkAnalyzer.Results and InkAnalyzer.IntermediateResults events.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
private void ResultsAvailable(object sender, Microsoft.Ink.ResultsUpdatedEventArgs e)
{
if (e.Status.Successful)
{
this.theDocumentModel.ResultsAvailable((Microsoft.Ink.InkAnalyzer)sender);
}
}
Piattaforme
Windows Vista
.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
ResultsUpdatedEventArgs Classe