行为

批注支持拖拽, 调整大小,移动等操作。

批注支持以下键盘行为: Esc: 当批注处于编辑模式时,按下 Esc 键,批注将处于有效状态。当再次按下 Esc 按键时,批注将会被取消选择。 Delete: 当批注处于有效状态时,按下 Delete 键,批注将会被删除。 Up: 当批注处于有效状态时,按下上方向键,批注将会被向上移动。 Down: 当批注处于有效状态时,按下方向键,批注将会被向下移动。 Left: 当批注处于有效状态时,按左方向键,批注将会被向左移动。 Right: 当批注处于有效状态时,按右方向键,批注将会被向右移动。 你也可以使用鼠标来操作批注。 在你选择一个批注后,批注会显示移动以及调整大小的标示, 你可以操作这些标示来改变批示。 你也可以拖拽批注来将它移动到其它位置。
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss")); initSpread(spread); }; function initSpread(spread) { var sheet = spread.getSheet(0); sheet.addSpan(1, 1, 1, 6); sheet.setValue(1, 1, "you can drag to resize the comment"); var comment = sheet.comments.add(1, 1, "new comment!"); comment.displayMode(GC.Spread.Sheets.Comments.DisplayMode.alwaysShown); };
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta name="spreadjs culture" content="zh-cn" /> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/zh/purejs/node_modules/@grapecity-software/spread-sheets-resources-zh/dist/gc.spread.sheets.resources.zh.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="app.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="sample-tutorial"> <div id="ss" style="width:100%; height:100%;border: 1px solid gray;"></div> </div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }