[]
Gets the check status of the row.
bool GetCheckStatus(int row)
Function GetCheckStatus(row As Integer) As Boolean
| Type | Name | Description |
|---|---|---|
| int | row | The index of the row. |
| Type | Description |
|---|---|
| bool | Whether the specified row is checked. |
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);
bool isChecked = outlineColumn.GetCheckStatus(1);