@univerjs/sheets-formula-ui
本 API 页面目前提供英文正文。代码签名与标识符不随界面语言变化。
Formula editing UI for Univer Sheets.
TypeScript
import { UniverSheetsFormulaUIPlugin } from '@univerjs/sheets-formula-ui'univer.registerPlugin(UniverSheetsFormulaUIPlugin, IUniverSheetsFormulaUIConfig)Entry Points
- Facade:
@univerjs/sheets-formula-ui/facade - Locale:
@univerjs/sheets-formula-ui/locale/*
IUniverSheetsFormulaUIConfig
TypeScript
import type { Ctor } from '@univerjs/core'import type { BaseFunction, IFunctionInfo, IFunctionNames } from '@univerjs/engine-formula'import type { MenuConfig } from '@univerjs/ui'export interface IUniverSheetsFormulaUIConfig { menu?: MenuConfig notExecuteFormula?: boolean description?: IFunctionInfo[] function?: Array<[Ctor<BaseFunction>, IFunctionNames]> /** * The switch for the function screen tips display in the formula editor. * @default true */ functionScreenTips?: boolean}你觉得这篇文档如何?