EN

getRange(rowN, 1, 10, 20)Size: a a a
EN

getRange(rowN, 1, 10, 20)С
С
EN
А
С
getRange(rowN, 10) то в редактируемой строке, допустим что чекбокс по адресу а9, защитится диапазон а1:а10 или я опять все не так понял ?EN
EN
EN
С
u
v
u
u
MY
v
MY
v
/**
* This function searches for videos related to the keyword 'dogs'. The video IDs and titles
* of the search results are logged to Apps Script's log.
*
* Note that this sample limits the results to 25. To return more results, pass
* additional parameters as documented here:
* https://developers.google.com/youtube/v3/docs/search/list
*/
function searchByKeyword() {
var results = YouTube.Search.list('id,snippet', {q: 'dogs', maxResults: 25});
for(var i in results.items) {
var item = results.items[i];
Logger.log('[%s] Title: %s', item.id.videoId, item.snippet.title);
}
}