Skip to main content

dxSpreadSheetExtractConditionParams(string,TdxSpreadSheetFormatSettings,Variant,TdxSpreadSheetFormulaOperation) Method

Extracts condition parameters from the specified formula token.

Declaration

procedure dxSpreadSheetExtractConditionParams(const S: string; const AFormatSettings: TdxSpreadSheetFormatSettings; var AConditionValue: Variant; var AOperation: TdxSpreadSheetFormulaOperation);

Parameters

Name Type
S string
AFormatSettings TdxSpreadSheetFormatSettings
AConditionValue Variant
AOperation TdxSpreadSheetFormulaOperation

Remarks

This procedure is used to parse formula expressions. The dxSpreadSheetExtractConditionParams procedure accepts a formula token as the S parameter and returns both the condition value and formula operation as the AConditionValue and AOperation parameters, respectively.

Refer to the TdxSpreadSheetFormulaOperation type description for more information on operations supported by the Spreadsheet control‘s formula engine.

See Also