GetVisible
Returns Visible of sheet
Returns:
- Type
-
bool
Example
Copy code
builder.CreateFile("xlsx");
oWorksheet = Api.GetActiveSheet();
oWorksheet.SetVisible(true);
oVisible = oWorksheet.GetVisible();
oWorksheet.GetRange("A1").SetValue("Visible: ");
oWorksheet.GetRange("B1").SetValue(oVisible);
builder.SaveFile("xlsx", "GetVisible.xlsx");
builder.CloseFile();
Resulting document