Interfaccia ContentControlStoreUpdatingEventArgs
fornisce i dati per StoreUpdating evento di un controllo contenuto.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)
Sintassi
'Dichiarazione
<GuidAttribute("5d9c73b6-b14d-43a0-99eb-6ea91fbd8456")> _
Public Interface ContentControlStoreUpdatingEventArgs
[GuidAttribute("5d9c73b6-b14d-43a0-99eb-6ea91fbd8456")]
public interface ContentControlStoreUpdatingEventArgs
Il tipo ContentControlStoreUpdatingEventArgs espone i seguenti membri.
Proprietà
Nome | Descrizione | |
---|---|---|
Content | Ottiene il testo che si sta salvando alla Web part XML personalizzata che è associato al controllo del contenuto. |
In alto
Esempi
Nell'esempio di codice seguente vengono illustrati i gestori eventi per StoreUpdating e ContentUpdating eventi.In questo esempio si presuppone che il documento contenga un oggetto PlainTextContentControl denominato plainTextContentControl1 ciò è associato a un elemento in una Web part XML personalizzata.Per un esempio di codice che illustra come associare un controllo contenuto a un elemento in una Web part XML personalizzata, vedere Procedura dettagliata: associazione dei controlli del contenuto a parti XML personalizzate.
Per utilizzare questo codice, incollarlo in ThisDocument la classe nel progetto.Per c#, è necessario anche associare gestori eventi a StoreUpdating e ContentUpdating eventi di plainTextContentControl1.
Questo esempio è valido per una personalizzazione a livello di documento.
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.");
}
Vedere anche
Riferimenti
Spazio dei nomi Microsoft.Office.Tools.Word
Altre risorse
Cenni preliminari sulle web part XML personalizzate
Procedura dettagliata: associazione dei controlli del contenuto a parti XML personalizzate