@univerjs/sheets-conditional-formatting v0.5.4


Function: getValueByType()

function getValueByType(
   value, 
   matrix, 
   context): 
  | {
  result: undefined;
  status: FormulaResultStatus;
 }
  | {
  result: Nullable<undefined | null | string | number | boolean | void>;
  status: FormulaResultStatus;
}

Defined in: sheets-conditional-formatting/src/models/calculate-unit-v2/utils.ts:91

Parameters

ParameterType
valueIValueConfig
matrixObjectMatrix<number>
contextIContext & { cfId: string; }

Returns

| { result: undefined; status: FormulaResultStatus; } | { result: Nullable<undefined | null | string | number | boolean | void>; status: FormulaResultStatus; }