[]
Exports the scheduler's data to a file in the specified format.
public void Export(string path, FileFormatEnum format)
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. |
Exports the scheduler's data to a stream in the specified format.
public void Export(Stream stream, FileFormatEnum format)
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. |
Exports the appointments' data to a file in the specified format.
public void Export(string path, IList<Appointment> appointments, FileFormatEnum format)
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. |
Exports the appointments' data to a stream in the specified format.
public void Export(Stream stream, IList<Appointment> appointments, FileFormatEnum format)
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. |