SpreadJS Documentation
GC.Spread.Sheets Namespace / Worksheet type / removeCustomName Method
The custom name.
In This Topic
    removeCustomName Method
    In This Topic
    Removes the specified custom name.
    Syntax
    var instance = new GC.Spread.Sheets.Worksheet(name);
    var value; // Type: any
    value = instance.removeCustomName(fnName);
    function removeCustomName( 
       fnName : string
    ) : any;

    Parameters

    fnName
    The custom name.
    Example
    This example uses the removeCustomName method.
    activeSheet.setValue(0, 0, 1);
    activeSheet.setValue(0, 1, 2);
    activeSheet.setValue(0, 2, 3);
    activeSheet.addCustomName("customName1","=12", 0, 0);
    activeSheet.addCustomName("customName2","Average(20,45)", 0, 0);
    activeSheet.addCustomName("customName3", "=$A$1:$C$1", 0, 0);
    activeSheet.setFormula(1, 0, "customName1");
    activeSheet.setFormula(1, 1, "customName2");
    activeSheet.setFormula(1, 2, "sum(customName3)");
    //activeSheet.removeCustomName("customName3");
    See Also

    Reference

    Worksheet type