PFSDllWrapperpfsGetParamT Method |
Return the value from the pfsNode (parameter) passed as argument, as the type entered by
defVal .
If the pfsNode (parameter) is undefined (
Zero then the default value
defVal
is returned.
This is a generically typed version of the
calls.
Return the value of the current parameter, or
defVal if
pfsParam is a null-pointer.
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static T pfsGetParam<T>(
IntPtr pfsParam,
T defVal
)
Public Shared Function pfsGetParam(Of T) (
pfsParam As IntPtr,
defVal As T
) As T
public:
generic<typename T>
static T pfsGetParam(
IntPtr pfsParam,
T defVal
)
static member pfsGetParam :
pfsParam : IntPtr *
defVal : 'T -> 'T
Parameters
- pfsParam
- Type: SystemIntPtr
A pfsNode pointer - defVal
- Type: T
dEFAULT VALUE
Type Parameters
- T
Return Value
Type:
T
See Also