PFSDllWrapperpfsAddKeywordDef Method |
Define the start of a new keyword, ie the start of a parameter list, and its attributes within the scope of a target.
This function is used to define the start of a list of parameters.
It has no counterpart, ie the usage is different from that of
pfsAddSectionDef, which requires a terminating pfsEndSection.
Restrictions: This function must be called within the scope of a target.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static void pfsAddKeywordDef(
IntPtr handle,
string keywordName,
string parTypes,
bool multi,
bool mandatory,
bool reptLast
)
Public Shared Sub pfsAddKeywordDef (
handle As IntPtr,
keywordName As String,
parTypes As String,
multi As Boolean,
mandatory As Boolean,
reptLast As Boolean
)
public:
static void pfsAddKeywordDef(
IntPtr handle,
String^ keywordName,
String^ parTypes,
bool multi,
bool mandatory,
bool reptLast
)
static member pfsAddKeywordDef :
handle : IntPtr *
keywordName : string *
parTypes : string *
multi : bool *
mandatory : bool *
reptLast : bool -> unit
Parameters
- handle
- Type: SystemIntPtr
A pfsHandle pointer - keywordName
- Type: SystemString
Nakme of Keyword - parTypes
- Type: SystemString
- multi
- Type: SystemBoolean
Indicates if multiple instances of the section are allowed (contrary to a unique section). - mandatory
- Type: SystemBoolean
Indicates if the section is mandatory (contrary to optional). - reptLast
- Type: SystemBoolean
See Also