ForEach

function ForEach(fCallback: () = null): void

Description

Executes a provided function once for each cell.

Parameters

fCallback()default: null

A function which will be executed for each cell.

Returns

void

Try It

var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A1").SetValue("1");
oWorksheet.GetRange("B1").SetValue("2");
oWorksheet.GetRange("C1").SetValue("3");
var oRange = oWorksheet.GetRange("A1:C1");
oRange.ForEach(function (range) {
   var sValue = range.GetValue();
   if (sValue != "1") {
   	range.SetBold(true);
   }
});

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).