forked from fanruan/finekit
richie
5 years ago
2 changed files with 27 additions and 7 deletions
@ -1,7 +0,0 @@
|
||||
package com.fanruan.api.design.ui.factory; |
||||
|
||||
/* |
||||
* FormulaFactory:公式编辑管理器 |
||||
* */ |
||||
public class FormulaFactory extends com.fr.design.formula.FormulaFactory{ |
||||
} |
@ -0,0 +1,27 @@
|
||||
package com.fanruan.api.design.work.formula; |
||||
|
||||
import com.fr.design.formula.UIFormula; |
||||
|
||||
/** |
||||
* 获取公式编辑器面板工具类 |
||||
*/ |
||||
public class FormulaUIKit { |
||||
|
||||
/** |
||||
* 获取普通公式面板 |
||||
* |
||||
* @return 公式面板 |
||||
*/ |
||||
public static UIFormula createFormulaPane() { |
||||
return com.fr.design.formula.FormulaFactory.createFormulaPane(); |
||||
} |
||||
|
||||
/** |
||||
* 获取可设置导出excel时是否保留公式的公式面板 |
||||
* |
||||
* @return 公式面板 |
||||
*/ |
||||
public static UIFormula createFormulaPaneWhenReserveFormula() { |
||||
return com.fr.design.formula.FormulaFactory.createFormulaPaneWhenReserveFormula(); |
||||
} |
||||
} |
Loading…
Reference in new issue