共用方式為


ActionEventArgs.Range 屬性

取得已辨認為智慧標籤的文字範圍。這個型別或成員僅適用於 2007 Microsoft Office system 專案。智慧標籤在 Office 2010 中已被取代。
.

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
ReadOnly Property Range As Range
Range Range { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.Range
範圍,包含已辨認為智慧標籤的文字。

範例

下列程式碼會示範 Click 事件的處理常式。事件處理常式會使用 Range 屬性,顯示包含已辨認智慧標籤詞彙的儲存格位址。這個程式碼範例是 Action 介面完整範例的一部分。

這是示範文件層級自訂的範例。

Private Sub DisplayAddress_Click(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Excel.ActionEventArgs) _
    Handles DisplayAddress.Click

    Dim smartTagAddress As String = e.Range.Address( _
        ReferenceStyle:=Excel.XlReferenceStyle.xlA1)
    MsgBox("The recognized text '" & e.Text & _
            "' is at range " & smartTagAddress)
End Sub
void DisplayAddress_Click(object sender, 
    Microsoft.Office.Tools.Excel.ActionEventArgs e)
{
    string smartTagAddress = e.Range.get_Address(Excel.XlReferenceStyle.xlA1);
    System.Windows.Forms.MessageBox.Show("The recognized text '" + e.Text +
        "' is at range " + smartTagAddress);
}

.NET Framework 安全性

請參閱

參考

ActionEventArgs 介面

Microsoft.Office.Tools.Excel 命名空間