コメントとメモの管理

序章

コメントは、セルに追加情報を追加するために使用されます。 Aspose.Cells は、セルにコメントを追加するための 2 つの方法を提供します。 1 つ目は、デザイナー ファイルに手動でコメントを作成することです。これらのコメントは、Aspose.Cells を使用してインポートされます。2 つ目は、実行時に Aspose.Cells API を使用してコメントを追加することです。このトピックでは、Aspose.Cells API を使用してセルにコメントを追加する方法について説明します。コメントの書式設定についても説明します。

コメントを追加する

を呼び出して、セルにコメントを追加します。コメントコレクションの追加メソッド (ワークシート物体)。新しいコメントからアクセスできます。コメントコメント インデックスを渡してコレクションを作成します。にアクセスした後、コメントオブジェクトを使用して、コメント ノートをカスタマイズします。コメントオブジェクトのノート財産。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = "";
// Create directory if it is not already present.
File file = new File(dataDir);
if(!file.exists())
file.mkdir();
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Workbook object
int sheetIndex = workbook.getWorksheets().add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex);
// Adding a comment to "F5" cell
int commentIndex = worksheet.getComments().add("F5");
// Accessing the newly added comment
com.aspose.cells.Comment comment = worksheet.getComments().get(commentIndex);
// Setting the comment note
comment.setNote( "Hello Aspose!");
// Saving the Excel file
workbook.save(dataDir + "book1.out.xls");

コメントのフォーマット

コメントの高さ、幅、およびフォント設定を構成して、コメントの外観をフォーマットすることもできます。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = "";
// Create directory if it is not already present.
File file = new File(dataDir);
if(!file.exists())
file.mkdir();
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Workbook object
int sheetIndex = workbook.getWorksheets().add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex);
// Adding a comment to "F5" cell
int commentIndex = worksheet.getComments().add("F5");
// Accessing the newly added comment
com.aspose.cells.Comment comment = worksheet.getComments().get(commentIndex);
// Setting the comment note
comment.setNote( "Hello Aspose!");
// Setting the font size of a comment to 14
comment.getFont().setSize(14);
// Setting the font of a comment to bold
comment.getFont().setBold(true);
// Setting the height of the font to 10
comment.setHeightCM(10);
// Setting the width of the font to 2
comment.setWidthCM(2);
// Saving the Excel file
workbook.save(dataDir + "book1.out.xls");

コメントに画像を追加する

Microsoft Excel 2007 では、セル コメントの背景として画像を使用することもできます。 Excel 2007 では、これは次の手順を実行することによって実現されます。 (彼らは、セルのコメントが既に追加されていると想定しています。)

  1. コメントを含むセルを右クリックします。
  2. 選択するコメントの表示/非表示、コメントからテキストをクリアします。
  3. コメントの枠線をクリックして選択します。
  4. 選択するフォーマット、 それからコメント.
  5. 上で色と線タブで、リスト。
  6. クリック塗りつぶし効果.
  7. 上で写真タブ、クリック画像を選択.
  8. 画像を見つけて選択します。
  9. クリックわかったすべてのダイアログが閉じるまで。

Aspose.Cells もこの機能を提供します。以下は、ゼロから XLSX ファイルを作成し、セル “A1” にコメントを追加し、背景として画像を設定するコード サンプルです。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = "";
// Create directory if it is not already present.
File file = new File(dataDir);
if(!file.exists())
file.mkdir();
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Get a reference of comments collection with the first sheet
com.aspose.cells.CommentCollection comments = workbook.getWorksheets().get(0).getComments();
// Add a comment to cell A1
int commentIndex = comments.add(0, 0);
com.aspose.cells.Comment comment = comments.get(commentIndex);
comment.setNote("First note.");
comment.getFont().setName("Times New Roman");
// Load an image
String filename = dataDir + "image.jpg";
byte[] result = null;
java.nio.channels.FileChannel fc = null;
try {
fc = new java.io.RandomAccessFile(filename, "r").getChannel();
java.nio.MappedByteBuffer byteBuffer = fc.map(java.nio.channels.FileChannel.MapMode.READ_ONLY, 0,
fc.size()).load();
System.out.println(byteBuffer.isLoaded());
result = new byte[(int) fc.size()];
if (byteBuffer.remaining() > 0) {
byteBuffer.get(result, 0, byteBuffer.remaining());
}
} catch (IOException e) {
throw e;
} finally {
try {
fc.close();
} catch (IOException e) {
throw e;
}
}
// Set image data to the shape associated with the comment
comment.getCommentShape().getFill().setImageData(result);
// Saving the Excel file
workbook.save(dataDir + "book1.out.xlsx");

先行トピック