Interfaccia ContextChangeEventArgs

Fornisce i dati per gli eventi Select, Deselect, ContextEnter e ContextLeave di un oggetto XMLNode e gli eventi ContextEnter, ContextLeave, Select e Deselect di un oggetto XMLNodes.

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

Sintassi

'Dichiarazione
<GuidAttribute("7403c9da-5555-41ed-8288-bf92e780d660")> _
Public Interface ContextChangeEventArgs
[GuidAttribute("7403c9da-5555-41ed-8288-bf92e780d660")]
public interface ContextChangeEventArgs

Il tipo ContextChangeEventArgs espone i seguenti membri.

Proprietà

  Nome Descrizione
Proprietà pubblica NewXMLNode Ottiene il controllo XMLNode in cui è stata spostata la selezione.
Proprietà pubblica OldXMLNode Ottiene il controllo XMLNode da cui è stata spostata la selezione.
Proprietà pubblica Reason Ottiene il motivo per cui la selezione è stata modificata.
Proprietà pubblica Selection Ottiene il testo selezionato, inclusi gli elementi XML.

In alto

Esempi

Nell'esempio di codice seguente vengono illustrati i gestori eventi per gli eventi XMLNode.Select, XMLNode.Deselect, XMLNode.ContextEnter e XMLNode.ContextLeave. Quando vengono generati gli eventi XMLNode.Select e XMLNode.Deselect, i gestori eventi aggiungono linee doppie ai bordi della selezione o le rimuovono a seconda dell'evento. Quando vengono generati gli eventi XMLNode.ContextEnter e XMLNode.ContextLeave, i gestori eventi visualizzano messaggi che indicano i nomi del nodo appena selezionato e di quello selezionato in precedenza. In questo esempio si suppone che il documento corrente contenga un oggetto XMLNode denominato CustomerNode.

Private Sub CustomerNode_Select(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContextChangeEventArgs) _
    Handles CustomerNode.Select

    e.Selection.Borders.OutsideLineStyle = _
        Word.WdLineStyle.wdLineStyleDouble
End Sub

Private Sub CustomerNode_Deselect(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContextChangeEventArgs) _
    Handles CustomerNode.Deselect

    e.Selection.Borders.OutsideLineStyle = _
        Word.WdLineStyle.wdLineStyleNone
End Sub

Private Sub CustomerNode_ContextEnter(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContextChangeEventArgs) _
    Handles CustomerNode.ContextEnter

    MsgBox("You entered the node '" & e.NewXMLNode.BaseName & "'.")
End Sub

Private Sub CustomerNode_ContextLeave(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContextChangeEventArgs) _
    Handles CustomerNode.ContextLeave

    MsgBox("You left the node '" & e.OldXMLNode.BaseName & "'.")
End Sub
private void XMLNodeSelections()
{
    this.CustomerNode.ContextEnter +=
        new Microsoft.Office.Tools.Word.ContextChangeEventHandler(
        CustomerNode_ContextEnter);

    this.CustomerNode.ContextLeave +=
        new Microsoft.Office.Tools.Word.ContextChangeEventHandler(
        CustomerNode_ContextLeave);

    this.CustomerNode.Select += 
        new Microsoft.Office.Tools.Word.ContextChangeEventHandler(
        CustomerNode_Select); 

    this.CustomerNode.Deselect +=
        new Microsoft.Office.Tools.Word.ContextChangeEventHandler(
        CustomerNode_Deselect);
}

void CustomerNode_Select(object sender, 
    Microsoft.Office.Tools.Word.ContextChangeEventArgs e)
{
    e.Selection.Borders.OutsideLineStyle =
        Word.WdLineStyle.wdLineStyleDouble;
}

void CustomerNode_Deselect(object sender,
    Microsoft.Office.Tools.Word.ContextChangeEventArgs e)
{
    e.Selection.Borders.OutsideLineStyle =
        Word.WdLineStyle.wdLineStyleNone;
}

void CustomerNode_ContextEnter(object sender,
    Microsoft.Office.Tools.Word.ContextChangeEventArgs e)
{
    MessageBox.Show("You entered the node '" +
        e.NewXMLNode.BaseName + "'.");
}

void CustomerNode_ContextLeave(object sender,
    Microsoft.Office.Tools.Word.ContextChangeEventArgs e)
{
    MessageBox.Show("You left the node '" +
        e.OldXMLNode.BaseName + "'.");
}

Vedere anche

Riferimenti

Spazio dei nomi Microsoft.Office.Tools.Word