[]
Gets the value type of the parameter.
public FunctionValueType ValueType { get; }
Public ReadOnly Property ValueType As FunctionValueType
Parameter amountParameter = new Parameter(FunctionValueType.Number, 0d);
Workbook.AddCustomFunction(new AddTaxFunction(new[] {
amountParameter,
new Parameter(FunctionValueType.Number, 0.08d)
}), true);
FunctionValueType valueType = amountParameter.ValueType;