PERWAPI.Param.AddDefaultValue C# (CSharp) Method

AddDefaultValue() public method

Add a default value to this parameter
public AddDefaultValue ( Constant cVal ) : void
cVal Constant the default value for the parameter
return void
        public void AddDefaultValue(Constant cVal)
        {
            defaultVal = cVal;
            parMode |= hasDefault;
        }