Spread.Sheets
name メソッド
ワークシートの名前。
ワークシートの名前を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any
value = instance.name(The);
Javascript (Specification) 
function name( 
   The : string
) : any;

パラメータ

The
ワークシートの名前。

戻り値の型

値が設定されていない場合は、ワークシート名を返します。値が設定されている場合は、ワークシートを返します。
使用例
次のサンプルコードは、シート名を設定します。
spread.sheets[0].name("The first sheet");
spread.sheets[1].name( "The second sheet");
This example sets the name for the active sheet.
activeSheet.name("Test");
This example returns the name of the active sheet.
var name = activeSheet.name();
alert(name);

関連トピック

参照

Worksheet タイプ

 

 


© 2016-2018, GrapeCity inc. All rights reserved.