SetActive
Makes the current sheet active.
Syntax
expression.SetActive();
expression
- A variable that represents a ApiWorksheet class.
Parameters
This method doesn't have any parameters.
Returns
This method doesn't return any data.
Example
This example makes the sheet active.
- Code
- Result
Api.AddSheet("New_sheet");
let sheet = Api.GetSheet("New_sheet");
sheet.SetActive();
let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("The current sheet is active.");