Read an existing settings file into memory.

Namespace:  bioPDF.PdfWriter
Assembly:  bioPDF.PdfWriter (in bioPDF.PdfWriter.dll)

Syntax

Visual Basic (Declaration)
Public Sub LoadSettings ( _
	fileName As String _
)
C#
public void LoadSettings(
	string fileName
)
Visual C++
public:
void LoadSettings(
	String^ fileName
)
JavaScript
function loadSettings(fileName);

Parameters

fileName
Type: System..::.String
Full file path of the settings file you want to read.

Remarks

If the configuration doesn't exist during the load an empty configuration will be the result. This means that you don't have to know if a configuration exists before you try to load it.

See Also