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