Read a string from an ini file.

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

Syntax

Visual Basic (Declaration)
Public Function ReadIniString ( _
	fileName As String, _
	sectionName As String, _
	valueName As String, _
	defaultValue As String _
) As String
C#
public string ReadIniString(
	string fileName,
	string sectionName,
	string valueName,
	string defaultValue
)
Visual C++
public:
virtual String^ ReadIniString(
	String^ fileName, 
	String^ sectionName, 
	String^ valueName, 
	String^ defaultValue
) sealed
JavaScript
function readIniString(fileName, sectionName, valueName, defaultValue);

Parameters

fileName
Type: System..::.String
File name of ini file.
sectionName
Type: System..::.String
Name of section in ini file.
valueName
Type: System..::.String
Name of value in section.
defaultValue
Type: System..::.String
Default value to return if value was not found.

Return Value

See Also