TextWordNode.Data-Eigenschaft
Ruft anwendungsdefinierte Daten für das TextWordNode-Objekt ab oder legt diese fest.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Syntax
'Declaration
Public Property Data As Object
'Usage
Dim instance As TextWordNode
Dim value As Object
value = instance.Data
instance.Data = value
public Object Data { get; set; }
public:
property Object^ Data {
Object^ get ();
void set (Object^ value);
}
/** @property */
public Object get_Data()
/** @property */
public void set_Data(Object value)
public function get Data () : Object
public function set Data (value : Object)
Eigenschaftenwert
Typ: System.Object
Die anwendungsdefinierten Daten für das TextWordNode-Objekt.
Hinweise
Verwenden Sie dies, um dem TextWordNode-Objekt Ihre eigenen Daten hinzuzufügen.
Beispiele
Im folgenden Beispiel wird ein TextWordNode-Objekt für ein TextBox-Steuerelement namens theTextBox zu einem InkAnalyzer namens theInkAnalyzer, hinzugefügt. Legt die Data-Eigenschaft des TextWordNode-Objekts auf die Text-Eigenschaft der TextBox fest.
' Add nodes to hold the TextWordNode
Dim writingRegion As WritingRegionNode = _
CType(theInkAnalyzer.RootNode.CreateSubNode(ContextNodeType.WritingRegion), _
WritingRegionNode)
Dim paragraph As ParagraphNode = _
CType(writingRegion.CreateSubNode(ContextNodeType.Paragraph), _
ParagraphNode)
Dim line As LineNode = _
CType(paragraph.CreateSubNode(ContextNodeType.Line), LineNode)
' Create node for the word
Dim textWord As TextWordNode = _
CType(line.CreateSubNode(ContextNodeType.TextWord), TextWordNode)
' Set location
Dim textTop As Double = InkCanvas.GetTop(theTextBox)
Dim textLeft As Double = InkCanvas.GetLeft(theTextBox)
Dim rectLocation As New Rect(textLeft, textTop, theTextBox.Width, theTextBox.Height)
textWord.SetLocation(New AnalysisRegion(rectLocation))
' Set the data property to be the text in the textbox.
textWord.Data = theTextBox.Text
// Add nodes to hold the TextWordNode
WritingRegionNode writingRegion = (WritingRegionNode)
theInkAnalyzer.RootNode.CreateSubNode(ContextNodeType.WritingRegion);
ParagraphNode paragraph = (ParagraphNode)
writingRegion.CreateSubNode(ContextNodeType.Paragraph);
LineNode line = (LineNode)
paragraph.CreateSubNode(ContextNodeType.Line);
// Create node for the word
TextWordNode textWord = (TextWordNode)
line.CreateSubNode(ContextNodeType.TextWord);
// Set location
double textTop = InkCanvas.GetTop(theTextBox);
double textLeft = InkCanvas.GetLeft(theTextBox);
Rect rectLocation = new Rect(textLeft, textTop, theTextBox.Width, theTextBox.Height);
textWord.SetLocation(new AnalysisRegion(rectLocation));
// Set the data property to be the text in the textbox.
textWord.Data = theTextBox.Text;
Plattformen
Windows Vista
.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