Udostępnij za pośrednictwem


Interfejs ContentControlStoreUpdatingEventArgs

Dostarcza dane dla StoreUpdating zdarzenia formantu zawartości.

Przestrzeń nazw:  Microsoft.Office.Tools.Word
Zestaw:  Microsoft.Office.Tools.Word (w Microsoft.Office.Tools.Word.dll)

Składnia

'Deklaracja
<GuidAttribute("5d9c73b6-b14d-43a0-99eb-6ea91fbd8456")> _
Public Interface ContentControlStoreUpdatingEventArgs
[GuidAttribute("5d9c73b6-b14d-43a0-99eb-6ea91fbd8456")]
public interface ContentControlStoreUpdatingEventArgs

Typ ContentControlStoreUpdatingEventArgs uwidacznia następujące elementy członkowskie.

Właściwości

  Nazwa Opis
Właściwość publiczna Content Pobiera tekst, który jest zapisywany niestandardowe części XML, którą jest powiązany formant zawartości.

Początek

Przykłady

Poniższy przykład kodu pokazuje obsługę zdarzeń dla StoreUpdating i ContentUpdating zdarzenia.W tym przykładzie założono, że dokument zawiera PlainTextContentControl o nazwie plainTextContentControl1 , jest związany z elementem w niestandardowej strony XML.Na przykład kod, który demonstruje, jak chcesz powiązać formant zawartości element w niestandardowej strony XML, zobacz Instruktaż: Powiązanie formantów zawartości do części XML niestandardowe.

Aby użyć tego kodu, wklej go do ThisDocument klasy w projekcie.W C#, należy również dołączyć obsługi zdarzeń do StoreUpdating i ContentUpdating zdarzenia plainTextContentControl1.

W tym przykładzie jest przejmowane poziomie dokumentu.

Private Sub plainTextContentControl1_StoreUpdating(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContentControlStoreUpdatingEventArgs) _
    Handles PlainTextContentControl1.StoreUpdating

    MessageBox.Show("The control was changed to the following value: " & vbCrLf & _
        e.Content & vbCrLf & "This value is about to be written to the node that is bound to this control.")
End Sub

Private Sub plainTextContentControl1_ContentUpdating(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContentControlContentUpdatingEventArgs) _
    Handles PlainTextContentControl1.ContentUpdating

    MessageBox.Show("The node that is bound to this control was changed to the following value: " & vbCrLf & _
        e.Content & vbCrLf & "This value is about to be written to this control.")
End Sub
void plainTextContentControl1_StoreUpdating(object sender, 
    Microsoft.Office.Tools.Word.ContentControlStoreUpdatingEventArgs e)
{
    MessageBox.Show("The control was changed to the following value: \n\n" +
        e.Content + "\n\nThis value is about to be written to the node that is bound to this control.");
}

void plainTextContentControl1_ContentUpdating(object sender, 
    Microsoft.Office.Tools.Word.ContentControlContentUpdatingEventArgs e)
{
    MessageBox.Show("The node that is bound to this control was changed to the following value: \n\n" +
        e.Content + "\n\nThis value is about to be written to this control.");
}

Zobacz też

Informacje

Przestrzeń nazw Microsoft.Office.Tools.Word

Inne zasoby

Formanty zawartości

Przegląd części XML niestandardowych

Instruktaż: Powiązanie formantów zawartości do części XML niestandardowe