PfsHelperPfsGetParam Method (IntPtr, Int32) |
Return a reference to the n'th parameter of the pfsNode (keyword) passed as argument.
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static IntPtr PfsGetParam(
IntPtr pfsKeyword,
int paramNo
)
Public Shared Function PfsGetParam (
pfsKeyword As IntPtr,
paramNo As Integer
) As IntPtr
public:
static IntPtr PfsGetParam(
IntPtr pfsKeyword,
int paramNo
)
static member PfsGetParam :
pfsKeyword : IntPtr *
paramNo : int -> IntPtr
Parameters
- pfsKeyword
- Type: SystemIntPtr
A pfsNode pointer - paramNo
- Type: SystemInt32
Number of parameter to get, 1-based
Return Value
Type:
IntPtrA 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