'Declaration Public Event BeforeExport As System.EventHandler(Of ExchangeEventArgs)
public event System.EventHandler<ExchangeEventArgs> BeforeExport
Event Data
The event handler receives an argument of type ExchangeEventArgs containing data related to this event. The following ExchangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Data | Gets or sets the data which are about to be exported. This property should contain one of the next:
|
Format | Gets the C1.Schedule.FileFormatEnum value, selected by the end-user. |
Remarks
Note, this event is not fired if you export data from your code using C1.Schedule.Appointment.SaveAs or C1ScheduleStorage.Export methods.
See Also