アプリケーション ドキュメント上でインク以外の単語の位置を設定します。
名前空間 : System.Windows.Ink
アセンブリ : IAWinFX (IAWinFX.dll 内)
構文
'宣言
Public Sub SetLocation ( _
___location As AnalysisRegion _
)
'使用
Dim instance As TextWordNode
Dim ___location As AnalysisRegion
instance.SetLocation(___location)
public void SetLocation(
AnalysisRegion ___location
)
public:
void SetLocation(
AnalysisRegion^ ___location
)
public void SetLocation(
AnalysisRegion ___location
)
public function SetLocation(
___location : AnalysisRegion
)
パラメータ
- ___location
型 : System.Windows.Ink.AnalysisRegion
例
次の例では、theTextBox という名前の TextBox コントロールで theInkAnalyzer という名前の InkAnalyzer に TextWordNode オブジェクトを追加します。また、TextBox の Text プロパティに TextWordNode オブジェクトの Data プロパティを設定します。
' 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;
プラットフォーム
Windows Vista
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0