[]
Exports the object specified by the Document property on the current exporter to the specified file.
public void Export(string fileName)
Type | Name | Description |
---|---|---|
string | fileName | The name of the output file. |
Exports the object specified by the Document property on the current exporter to the specified Stream.
Note that some export formats do not support exporting to streams. Test the value returned by the CanExportToStream property on ExportProvider prior to calling this method.
public void Export(Stream stream)
Type | Name | Description |
---|---|---|
Stream | stream | Stream object to store results of export. |