IFilterWriteToFile Method |
Writes the entire filter, starting at current position, to
specified filepath. Should only be called on an input filter.
Namespace:
pdftron.Filters
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax void WriteToFile(
string path,
bool append
)
Sub WriteToFile (
path As String,
append As Boolean
)
void WriteToFile(
[InAttribute] String^ path,
[InAttribute] bool append
)
function WriteToFile(path, append);
Parameters
- path
- Type: SystemString
The output filepath. - append
- Type: SystemBoolean
True to append to existing file contents, false to overwrite.
See Also