ApocDriverRender Method (String, String) |
Executes the conversion reading the source tree from the file
inputFile, converting it to a format dictated by the
renderer and writing it to the file identified by outputFile.
Namespace: Kettic.AspNet.Controls.Toolkit.ApocAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic virtual void Render(
string inputFile,
string outputFile
)
Public Overridable Sub Render (
inputFile As String,
outputFile As String
)
public:
virtual void Render(
String^ inputFile,
String^ outputFile
)
abstract Render :
inputFile : string *
outputFile : string -> unit
override Render :
inputFile : string *
outputFile : string -> unit
Parameters
- inputFile
- Type: SystemString
Path to an XSL-FO file - outputFile
- Type: SystemString
Path to a file
Implements
IDriverRender(String, String)
Remarks
If the file outputFile does not exist, it will created
otherwise it will be overwritten. Creating a file may
generate a variety of exceptions. See FileStream
for a complete list.
See Also