Excel API Library for .NET - Sample Browser | Document Solutions | Comments
[
フレーム]
## Comments
Document Solutions for Excel enables users to annotate worksheets. They can write comments for cells to add information about the data it contains.
Add comments for a range using the **AddComment** method. It returns an instance of the **IComment** interface.
Always show comments with the **Visible** property.
Modify comment layouts with the **Shape** property.
Create rich text using the **TextFrame** property of the **IShape** interface. You can use different font styles for each run.
// Save to an excel file
workbook.Save("FolderExample.xlsx");
' Create a new Workbook
Dim workbook As New Workbook
FIXME: This demo doesn't have VB code.
' save to an excel file
workbook.Save("FolderExample.xlsx")