ContextGetParameter Method |
Returns the value of a parameter
Namespace: WorkflowGen.My.DataAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 2.4.0.0 (2.4.0.0)
Syntax public Object GetParameter(
string paramName
)
Public Function GetParameter (
paramName As String
) As Object
Parameters
- paramName
- Type: SystemString
Parameter name to get the value
Return Value
Type:
ObjectVALUE_TEXT, VALUE_DATETIME, VALUE_NUMERIC, VALUE_FILE_PATH FileInfo or null if parameter not found
Remarks Returns a String for a datatype TEXT
Returns a DateTime for a datatype DATETIME
Returns a Double for a datatype NUMERIC
Returns a FileInfo for a datatype FILE
Note that the FileInfo is the information about the current temporary file create by WorkflowGen, use GetFileNameParameter to get its original filename
See Also