Skip to main content

XlFunc.Param(XlVariantValue) Method

Creates a new IXlFormulaParameter object from the specified value.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v24.2.Core.dll

NuGet Package: DevExpress.Printing.Core

#Declaration

public static IXlFormulaParameter Param(
    XlVariantValue value
)

#Parameters

Name Type Description
value XlVariantValue

An XlVariantValue object. However, a value of any standard type can be supplied because the XlVariantValue class implements multiple implicit constructors.

#Returns

Type Description
IXlFormulaParameter

An IXlFormulaParameter object that is the function result.

#Remarks

Use the Param method to convert a constant to the IXlFormulaParameter object when creating an expression for use in the IXlCell.SetFormula or IXlCell.SetSharedFormula methods.

See Also