GetRows
function GetRows(value: string | number = null): ApiRange | "null"
Description
Returns the ApiRange object that represents all the cells on the rows range.
Parameters
- value
string | number
null Specifies the rows range in the string or number format.
Returns
ApiRange | "null"
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRows("1:4").SetFillColor(Api.CreateColorFromRGB(255, 213, 191));