TurnoutGetCustomParameterValue Method |
Get custom parameter value from turnout settings.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic Object GetCustomParameterValue(
string name
)
Public Function GetCustomParameterValue (
name As String
) As Object
public:
Object^ GetCustomParameterValue(
String^ name
)
Parameters
- name String
- Custom parameter name.
Return Value
Object
ExceptionsException | Condition |
---|
ArgumentException |
Thrown when:
- The input parameter type is not supported.
- Can not find the parameter from custom parameter list.
|
Remarks
This method gets custom parameter value from turnout settings.
If the parameter is number type, it will return a double value.
If the parameter is enum type, it will return a string value of its global name, not display name.
If the parameter is string type, it will return a string value.
See Also