Spread.Sheets
removeCustomName メソッド
GC.Spread.Sheets 名前空間 > Workbook タイプ : removeCustomName メソッド
カスタム名。
指定したカスタム名を削除します。
シンタックス
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any

// パラメータ
var name; //タイプ: string

value = instance.removeCustomName(name);
function removeCustomName( 
   name : string
) : any;

パラメータ

name
カスタム名。
使用例
次のサンプルコードは、removeCustomNameメソッドを使用します。
// 次のサンプルコードは、removeCustomNameメソッドを使用します。 activeSheet.setValue(0, 0, 1); activeSheet.setValue(0, 1, 2); activeSheet.setValue(0, 2, 3); spread.addCustomName("customName1","=12", 0, 0); activeSheet.setFormula(1, 0, "customName1"); //spread.removeCustomName("customName1");
activeSheet.setValue(0, 0, 1);
activeSheet.setValue(0, 1, 2);
activeSheet.setValue(0, 2, 3);
spread.addCustomName("customName1","=12", 0, 0);
activeSheet.setFormula(1, 0, "customName1");
//spread.removeCustomName("customName1");
関連トピック

参照

Workbook タイプ