Skip to content

DefaultValue Property

Summary

Gets or sets the default value of this Parameter property.

Signature

1
public object DefaultValue {get; set;}

Return Value

object

Declaring Type

cAlgo.API.ParameterAttribute

Examples

1
2
3
4
5
 //...
 //The value for Periods is fourteen
 [Parameter(DefaultValue = 14)]
 public int Periods { get; set; }
 //...

Last update: March 23, 2023