ActionEventArgs.Range 屬性
取得已辨認為智慧標籤的文字範圍。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)
語法
'宣告
ReadOnly Property Range As Range
Get
Range Range { get; }
屬性值
型別:Microsoft.Office.Interop.Word.Range
範圍,包含已辨認為智慧標籤的文字。
範例
下列程式碼範例會示範 Click 事件的處理常式。 事件處理常式會使用 Range 屬性顯示已辨認智慧標籤詞彙的開始和結尾位置。 這個程式碼範例是 Action 介面完整範例的一部分。
這是示範文件層級自訂的範例。
Private Sub DisplayAddress_Click(ByVal sender As Object, _
ByVal e As Microsoft.Office.Tools.Word.ActionEventArgs) _
Handles displayAddress.Click
Dim termStart As Integer = e.Range.Start
Dim termEnd As Integer = e.Range.End
MsgBox("The recognized text '" & e.Text & _
"' begins at position " & termStart & _
" and ends at position " & termEnd)
End Sub
void displayAddress_Click(object sender,
Microsoft.Office.Tools.Word.ActionEventArgs e)
{
int termStart = e.Range.Start;
int termEnd = e.Range.End;
System.Windows.Forms.MessageBox.Show("The recognized text '" + e.Text +
"' begins at position " + termStart.ToString() +
" and ends at position " + termEnd.ToString());
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。