# SaveAsFormula 方法
SaveAsFormula(AsName, Group)
将当前使用的公式另存为。
参数
参数 | 说明 |
---|---|
AsName | 公式另存为的名称,(字符串类型) |
Group | 存储于的公式组名称, 若为空表示当前指标组不变(字符串类型) |
返回值
返回1表示成功,失败返回0
示例
' 得到框架名称为"Technic",窗格名称为"Main"的窗格对象
Set Grid = Technic.GetGridByName("Main")
Set Formula = Grid.GetFormulaByIndex(1)
' 将当前Technic中加载的公式另存到当前指标组中,另存为的指标名称为my_Formula1
relst = Formula.SaveAsFormula("my_Formula1","");
Application.MsgOut relst
1
2
3
4
5
6
7
2
3
4
5
6
7
应用于