添加 Cells 到 Microsoft Excel 公式监视窗口
Contents
[
Hide
]
可能的使用场景
Microsoft Excel 监视窗口是一个有用的工具,可以方便地在窗口中监视单元格值及其公式。你可以打开监视窗口使用 Microsoft Excel 通过单击公式 > 观看 窗户.它有添加手表按钮,可用于添加要检查的单元格。同样,您可以使用工作表.CellWatches.Add()添加单元格的方法监视窗口使用 Aspose.Cells API。
添加 Cells 到 Microsoft Excel 公式监视窗口
以下示例代码设置单元格 C1 和 E1 的公式,并将它们都添加到监视窗口。然后将工作簿另存为输出Excel文件.如果打开输出 Excel 文件并查看监视窗口,您将看到两个单元格,如屏幕截图所示。
示例代码
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Create empty workbook. | |
Workbook wb = new Workbook(); | |
// Access first worksheet. | |
Worksheet ws = wb.Worksheets[0]; | |
// Put some integer values in cell A1 and A2. | |
ws.Cells["A1"].PutValue(10); | |
ws.Cells["A2"].PutValue(30); | |
// Access cell C1 and set its formula. | |
Cell c1 = ws.Cells["C1"]; ; | |
c1.Formula = "=Sum(A1,A2)"; | |
// Add cell C1 into cell watches by name. | |
ws.CellWatches.Add(c1.Name); | |
// Access cell E1 and set its formula. | |
Cell e1 = ws.Cells["E1"]; ; | |
e1.Formula = "=A2*A1"; | |
// Add cell E1 into cell watches by its row and column indices. | |
ws.CellWatches.Add(e1.Row, e1.Column); | |
// Save workbook to output XLSX format. | |
wb.Save("outputAddCellsToMicrosoftExcelFormulaWatchWindow.xlsx", SaveFormat.Xlsx); |