Describe a function parameter for use in the C1 Function system.
Namespace: Composite.FunctionsAssembly: Composite (in Composite.dll) Version: 3.0.4358.29153
Syntax
| C# |
|---|
public FunctionParameterDescriptionAttribute(
string parameterName,
string parameterLabel,
string parameterHelpText,
Object defaultValue
) |
| Visual Basic |
|---|
Public Sub New ( _
parameterName As String, _
parameterLabel As String, _
parameterHelpText As String, _
defaultValue As Object _
) |
| Visual C++ |
|---|
public:
FunctionParameterDescriptionAttribute(
String^ parameterName,
String^ parameterLabel,
String^ parameterHelpText,
Object^ defaultValue
) |
Parameters
- parameterName
- Type: System..::..String
The programmatic name of the parameter
- parameterLabel
- Type: System..::..String
Human readable label
- parameterHelpText
- Type: System..::..String
Human readable help text
- defaultValue
- Type: System..::..Object
Optional. Default value that should be assigned to the parameter if not specified by the caller. You can use 'null' for complex objects that can not be expressed in attribute code and the check for null in the code.
See Also