InkAnalyzer.Ink, propriété
Mise à jour : November 2007
Obtient l'objet Ink à partir duquel InkAnalyzer peut analyser les données de trait.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public ReadOnly Property Ink As Ink
'Utilisation
Dim instance As InkAnalyzer
Dim value As Ink
value = instance.Ink
public Ink Ink { get; }
public:
property Ink^ Ink {
Ink^ get ();
}
/** @property */
public Ink get_Ink()
public function get Ink () : Ink
Valeur de propriété
Type : Microsoft.Ink.Ink
Objet Ink à partir duquel InkAnalyzer peut analyser les données de trait.
Notes
InkAnalyzer peut analyser les données de trait à partir d'un seul objet Ink. Vous ne pouvez pas modifier cette association une fois l'analyseur d'entrée manuscrite initialisé.
Exemples
Cet exemple supprime tous les traits associés à un InkAnalyzer, theInkAnalyzer. Il supprime ensuite les traits de l'objet Ink associé.
' Get all the strokes associated with the ink analyzer.
Dim theStrokes As Microsoft.Ink.Strokes = Me.theInkAnalyzer.RootNode.Strokes
If Nothing IsNot theStrokes Then
' Remove the strokes from the analyzer.
Me.theInkAnalyzer.RemoveStrokes(theStrokes)
' Deleted the strokes from the associated Ink object.
Me.theInkAnalyzer.Ink.DeleteStrokes(theStrokes)
End If
// Get all the strokes associated with the ink analyzer.
Microsoft.Ink.Strokes theStrokes = this.theInkAnalyzer.RootNode.Strokes;
if (null != theStrokes)
{
// Remove the strokes from the analyzer.
this.theInkAnalyzer.RemoveStrokes(theStrokes);
// Deleted the strokes from the associated Ink object.
this.theInkAnalyzer.Ink.DeleteStrokes(theStrokes);
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0