SpreadJS Documentation
GC.Spread.Sheets.Touch Namespace / TouchToolStrip class / clear Method
In This Topic
    clear Method
    In This Topic
    Clears all items in the toolbar.
    Syntax
    var instance = new GC.Spread.Sheets.Touch.TouchToolStrip(workbook, host);
    var value; // Type: any
    value = instance.clear();
    function clear() : any;
    Example
    This example uses the clear method.
    spread.touchToolStrip.add(new GC.Spread.Sheets.Touch.TouchToolStripItem("C", "Delete", "tsoutline.png", function(){ }))
    spread.touchToolStrip.getItem("C").font("15px Arial").foreColor("red");
    spread.touchToolStrip.imageAreaHeight(30);
    spread.touchToolStrip.itemHeight(80);
    spread.touchToolStrip.itemWidth(50);
    spread.touchToolStrip.add(new GC.Spread.Sheets.Touch.TouchToolStripSeparator());
    spread.touchToolStrip.clear();
    See Also