GcSpread.Sheets Namespace > Comment class : location Method |
var instance = new GcSpread.Sheets.Comment(); var returnValue; // Type: Point returnValue = instance.location(value);
var comment = new GcSpread.Sheets.Comment(); comment.text("new comment!"); comment.backColor("yellow"); comment.foreColor("green"); comment.displayMode(GcSpread.Sheets.DisplayMode.AlwaysShown); comment.location(new GcSpread.Sheets.Point(10, 10)); activeSheet.setComment(5,5,comment);