PFSKeywordInsertNewParameterBool Method |
Insert a bool parameter into this keyword at the specified position.
If insertion point equals Count+1, the parameter is added to the end of the list.
Parameters at and after the insertion point move down to accomodate the new element.
This method is an O(n) operation, where n is number of parameters
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic PFSParameter InsertNewParameterBool(
bool val,
int parameterNumber
)
Public Function InsertNewParameterBool (
val As Boolean,
parameterNumber As Integer
) As PFSParameter
public:
PFSParameter^ InsertNewParameterBool(
bool val,
int parameterNumber
)
member InsertNewParameterBool :
val : bool *
parameterNumber : int -> PFSParameter
Parameters
- val
- Type: SystemBoolean
Value to insert - parameterNumber
- Type: SystemInt32
Parameter position to insert values at. 1-based
Return Value
Type:
PFSParameterNew parameter
See Also