Click or drag to resize
PFSDllWrapperpfsKeywordParam Method
Return a reference to the n'th parameter of the m'th instance of a specific keyword name of the pfsNode (target/section), Zero if keyword or parameter was not found.

Namespace: DHI.PFS
Assembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax
public static IntPtr pfsKeywordParam(
	IntPtr section,
	string keywordName,
	int keywordNum,
	int paramNum
)

Parameters

section
Type: SystemIntPtr
A pfsNode pointer to a section
keywordName
Type: SystemString
Name of key word
keywordNum
Type: SystemInt32
Number of keyword with that name, 1-based.
paramNum
Type: SystemInt32
Number of parameter to get, 1-based

Return Value

Type: IntPtr
A pfsNode pointer.
Remarks
The function returns a reference to a parameter value, not the value itself. The value must be extracted using the parameter value extraction function for the particular data type. Please note, that parameters may only be referenced by number.
See Also