Condividi tramite


Proprietà ActionEventArgs.Range

Ottiene l'intervallo contenente il testo riconosciuto come smart tag.

Spazio dei nomi:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Sintassi

'Dichiarazione
ReadOnly Property Range As Range
    Get
Range Range { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Word.Range
Intervallo contenente il testo riconosciuto come smart tag.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato un gestore per l'evento Click. Il gestore eventi utilizza la proprietà Range per visualizzare le posizioni di inizio e fine del termine smart tag riconosciuto. Questo esempio di codice fa parte di un esempio più esaustivo fornito per l'interfaccia Action.

Questo esempio è valido per una personalizzazione a livello di documento.

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());
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ActionEventArgs Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Word