|
FileName |
Top Previous Next |
|
The FileName property specifies the name of the output file that needs to be generated.
Syntax
Remarks
The FileName property is used to set the name for the output document that needs to be generated. If extension is not provided with the FileName in the FileExtension property, the default file extension is used.
[VC++] m_Engine.SetFileName("Sample"); m_Engine.BeginDoc(); m_Engine.EndDoc();
[VB] With gtEngineX1 .FileName = "Sample" .BeginDoc .EndDoc End With
See Also
FileExtension, FileDescription
|