[]
Sets the check status of the row.
void SetCheckStatus(int row, bool checkStatus)
Sub SetCheckStatus(row As Integer, checkStatus As Boolean)
| Type | Name | Description |
|---|---|---|
| int | row | The index of the row. |
| bool | checkStatus | The check status of the row. |
worksheet.Range["A1:A3"].Value = new object[,] {{"Name"}, {"Node 1"}, {"Node 1.1"}};
worksheet.Range["A2"].IndentLevel = 1;
IOutlineColumn outlineColumn = worksheet.OutlineColumn;
outlineColumn.ShowCheckBox = true;
outlineColumn.SetCheckStatus(1, true);