[]
• new Padding(top?
, right?
, bottom?
, left?
)
パディング情報を表します。
実例
var comment = activeSheet.comments.add(2, 2, 'this is a comment');
comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown)
console.log(comment.padding()); // undefined
comment.padding(new GC.Spread.Sheets.Comments.Padding(10, 20, 30, 40));
console.log(comment.padding()); // Padding {top: 10, right: 20, bottom: 30, left: 40}
名前 | 型 | 説明 |
---|---|---|
top? |
number |
上パディング。 |
right? |
number |
右パディング。 |
bottom? |
number |
下パディング。 |
left? |
number |
左パディング。 |