Spread.Sheets Documentation
remove Method
The name of the item to be removed.
Removes the toolbar item with the specified name.
Syntax
var instance = new GC.Spread.Sheets.Touch.TouchToolStrip(workbook, host);
var value; // Type: TouchToolStripItem
value = instance.remove(name);
function remove( 
   name : string
) : TouchToolStripItem;

Parameters

name
The name of the item to be removed.

Return Value

The removed item.
Example
This example removes an item from the toolbar.
<input type="button" id="button1" value="button1"/>

spread.touchToolStrip.add(new GC.Spread.Sheets.Touch.TouchToolStripItem("Cut", "Delete", "cut.png", function(){ }))
spread.touchToolStrip.getItem("Cut").font("15px Arial").foreColor("red");
spread.touchToolStrip.add(new GC.Spread.Sheets.Touch.TouchToolStripSeparator());

$("#button1").click(function () {
spread.touchToolStrip.remove("Cut");
activeSheet.resumePaint();
activeSheet.repaint();
    });
See Also

Reference

TouchToolStrip class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.