user1591538
user1591538

Reputation:

How to make use of protected ranges in Google App Script?

As of 8th august it is possible to have protected ranges in spreadsheets. How can I access this functionality in my scripts? Thanks

Upvotes: 0

Views: 591

Answers (1)

AdamL
AdamL

Reputation: 24609

I would say you might simply need to wait for GAS to "catch up" with new features in Google Spreadsheets, or perhaps raise this as a feature request in the issue tracker.

If it were to be implemented, I presume it would as a setProtection() method on a range object, as it can be done now on a sheet object.

Upvotes: 2

Related Questions