[]
        
(Showing Draft Content)

C1.Schedule.C1ScheduleStorage.Export

Export Method

Export(string, FileFormatEnum)

Exports the scheduler's data to a file in the specified format.

Declaration
public void Export(string path, FileFormatEnum format)
Parameters
Type Name Description
string path

A string containing the full path (including the file name and extension) to export the scheduler's data to.

FileFormatEnum format

The FileFormatEnum value.

Export(Stream, FileFormatEnum)

Exports the scheduler's data to a stream in the specified format.

Declaration
public void Export(Stream stream, FileFormatEnum format)
Parameters
Type Name Description
Stream stream

A Stream object which specifies the stream into which the scheduler's data will be exported.

FileFormatEnum format

The FileFormatEnum value.

Export(string, IList<Appointment>, FileFormatEnum)

Exports the appointments' data to a file in the specified format.

Declaration
public void Export(string path, IList<Appointment> appointments, FileFormatEnum format)
Parameters
Type Name Description
string path

A string containing the full path (including the file name and extension) to export.

IList<Appointment> appointments

IList<T> to be exported.

FileFormatEnum format

The FileFormatEnum value.

Export(Stream, IList<Appointment>, FileFormatEnum)

Exports the appointments' data to a stream in the specified format.

Declaration
public void Export(Stream stream, IList<Appointment> appointments, FileFormatEnum format)
Parameters
Type Name Description
Stream stream

A Stream object which specifies the stream into which the appointments's data will be exported.

IList<Appointment> appointments

IList<T> to be exported.

FileFormatEnum format

The FileFormatEnum value.