GcSpread.Sheets Namespace > FormulaInformation type : hasFormula Field |
var instance = new GcSpread.Sheets.FormulaInformation(name); var value; // Type: boolean value = instance.hasFormula;
var hasFormula : boolean;
activeSheet.setValue(0, 2, 3); activeSheet.setFormula(1,1,"C1+D1",GcSpread.Sheets.SheetArea.viewport); var information = activeSheet.getFormulaInfomation(1, 1); alert(information.hasFormula);