Excel でコメントの背景を変更する方法
Excel でコメントの色を変更する方法
既定のコメントの背景色が必要ない場合、興味のある色に置き換えたいことがあるかもしれません。Excel でコメントボックスの背景色を変更する方法は?
以下のコードは、Aspose.Cells を使用して自分の選択したコメントに好きな背景色を追加する方法を案内します。
ここでは、サンプルファイル をご用意しています。このファイルは、以下のコードでワークブックオブジェクトを初期化するために使用されます。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string path = ""; | |
//Initialize a new workbook. | |
Workbook book = new Workbook(path + "exmaple.xlsx"); | |
// Accessing the newly added comment | |
Comment comment = book.Worksheets[0].Comments[0]; | |
// change background color | |
Shape shape = comment.CommentShape; | |
shape.Fill.SolidFill.Color = Color.Red; | |
// Save the Excel file | |
book.Save(path + "result.xlsx"); |
上記のコードを実行すると、出力ファイル が生成されます。
Excel でコメントに画像を挿入する方法
Microsoft Excel はスプレッドシートの見た目や感じを大幅にカスタマイズできます。コメントに背景画像を追加することも可能です。背景画像を追加することは見た目の選択肢であり、またブランディングを強化するためにも使用できます。
以下のサンプルコードは、Aspose.Cells API を使用して XLSX ファイルをゼロから作成し、画像背景のコメントをセル A1 に追加します。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = ""; | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Instantiate a Workbook | |
Workbook workbook = new Workbook(); | |
// Get a reference of comments collection with the first sheet | |
CommentCollection comments = workbook.Worksheets[0].Comments; | |
// Add a comment to cell A1 | |
int commentIndex = comments.Add(0, 0); | |
Comment comment = comments[commentIndex]; | |
comment.Note = "First note."; | |
comment.Font.Name = "Times New Roman"; | |
// Load an image into stream | |
Bitmap bmp = new Bitmap(dataDir + "image2.jpg"); | |
MemoryStream ms = new MemoryStream(); | |
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png); | |
// Set image data to the shape associated with the comment | |
comment.CommentShape.Fill.ImageData = ms.ToArray(); | |
dataDir = dataDir + "commentwithpicture1.out.xlsx"; | |
// Save the workbook | |
workbook.Save(dataDir, Aspose.Cells.SaveFormat.Xlsx); |