PFSDllWrapperpfsGetKeywordParamT Method |
Return the value of the n'th parameter of the m'th instance of a specific keyword name of the pfsNode (target/section),
or defVal if keyword or parameter was not found.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static T pfsGetKeywordParam<T>(
IntPtr section,
string keywordName,
int keywordNum,
int paramNum,
T defVal
)
Public Shared Function pfsGetKeywordParam(Of T) (
section As IntPtr,
keywordName As String,
keywordNum As Integer,
paramNum As Integer,
defVal As T
) As T
public:
generic<typename T>
static T pfsGetKeywordParam(
IntPtr section,
String^ keywordName,
int keywordNum,
int paramNum,
T defVal
)
static member pfsGetKeywordParam :
section : IntPtr *
keywordName : string *
keywordNum : int *
paramNum : int *
defVal : 'T -> 'T
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 - defVal
- Type: T
Default value
Type Parameters
- T
- Type of value to get
Return Value
Type:
TSee Also