Udostępnij za pośrednictwem


SaveEventArgs Interfejs

Definicja

Udostępnia dane dla zdarzenia BeforeSave.

public interface class SaveEventArgs
[System.Runtime.InteropServices.Guid("06c7ed15-2df8-4a5c-acf4-10cdd5a6a510")]
public interface SaveEventArgs
[<System.Runtime.InteropServices.Guid("06c7ed15-2df8-4a5c-acf4-10cdd5a6a510")>]
type SaveEventArgs = interface
Public Interface SaveEventArgs
Atrybuty

Przykłady

Poniższy przykład kodu przedstawia procedurę obsługi zdarzeń dla BeforeSave zdarzenia. Po zapisaniu dokumentu program obsługi zdarzeń monituje o anulowanie lub kontynuowanie operacji zapisywania.

Ten przykład dotyczy dostosowywania na poziomie dokumentu.

private void DocumentBeforeSave()
{
    this.BeforeSave += new Microsoft.Office.Tools.Word.SaveEventHandler(ThisDocument_BeforeSave);
}

void ThisDocument_BeforeSave(object sender, Microsoft.Office.Tools.Word.SaveEventArgs e)
{
    if (MessageBox.Show("Do you want to save the document?", "BeforeSave",
        MessageBoxButtons.YesNo) == DialogResult.No)
    {
        e.Cancel = true;
    }
}
Private Sub DocumentBeforeSave()
    AddHandler Me.BeforeSave, AddressOf ThisDocument_BeforeSave
End Sub

Private Sub ThisDocument_BeforeSave(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.SaveEventArgs)
    If MessageBox.Show("Do you want to save the document?", "BeforeSave", _
        MessageBoxButtons.YesNo) = DialogResult.No Then
        e.Cancel = True
    End If
End Sub

Właściwości

Cancel

Pobiera lub ustawia wartość wskazującą, czy anulować operację zapisywania.

ShowSaveAsDialog

Pobiera lub ustawia wartość wskazującą, czy wyświetlić okno dialogowe Zapisz jako.

Dotyczy