GcSpread.Sheets Namespace > Comment class : textDecoration Method |
var instance = new GcSpread.Sheets.Comment(); var returnValue; // Type: TextDecorationType returnValue = instance.textDecoration(value);
function textDecoration( value : TextDecorationType ) : TextDecorationType;
var comment = new GcSpread.Sheets.Comment(); comment.text("new comment!"); comment.backColor("yellow"); comment.foreColor("green"); comment.displayMode(GcSpread.Sheets.DisplayMode.AlwaysShown); comment.textDecoration(GcSpread.Sheets.TextDecorationType.Underline); activeSheet.setComment(5,5,comment); activeSheet.isPaintSuspended(true); activeSheet.isPaintSuspended(false);