var instance = new GC.Spread.Sheets.Comments.Comment(text); var returnValue; // Type: any returnValue = instance.text(value);
function text( value : string ) : any;
パラメータ
- value
- コメントのテキスト。
戻り値の型
値が設定されていない場合は、コメントのテキストを返します。値が設定されている場合は、コメントを返します。
var instance = new GC.Spread.Sheets.Comments.Comment(text); var returnValue; // Type: any returnValue = instance.text(value);
function text( value : string ) : any;
var comment = new GC.Spread.Sheets.Comments.Comment(); comment.text("new comment!"); comment.backColor("yellow"); comment.foreColor("green"); comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown); activeSheet.getCell(5,5).comment(comment);