[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Parameter.ValueType

ValueType Property

ValueType

Gets the value type of the parameter.

Declaration
public FunctionValueType ValueType { get; }
Public ReadOnly Property ValueType As FunctionValueType
Examples
Parameter amountParameter = new Parameter(FunctionValueType.Number, 0d);
Workbook.AddCustomFunction(new AddTaxFunction(new[] {
    amountParameter,
    new Parameter(FunctionValueType.Number, 0.08d)
}), true);
FunctionValueType valueType = amountParameter.ValueType;