सुरक्षित की गई रेंज और शीट ऐक्सेस करना और उनमें बदलाव करना. सुरक्षित रेंज, दोनों में से किसी एक स्टैटिक लेयर को सुरक्षित रख सकती है
सेल की रेंज या नाम वाली रेंज. सुरक्षित शीट में असुरक्षित क्षेत्र शामिल हो सकते हैं. इसके लिए
Google Sheets के पुराने वर्शन से बनाई गई स्प्रेडशीट के लिए,
का इस्तेमाल करें
क्लास का इस्तेमाल करें.
PageProtection
// Protect range A1:B10, then remove all other users from the list of editors. var ss = SpreadsheetApp.getActive(); var range = ss.getRange('A1:B10'); var protection = range.protect().setDescription('Sample protected range'); // Ensure the current user is an editor before removing others. Otherwise, if the user's edit // permission comes from a group, the script throws an exception upon removing the group. var me = Session.getEffectiveUser(); protection.addEditor(me); protection.removeEditors(protection.getEditors()); if (protection.canDomainEdit()) { protection.setDomainEdit(false); }
// Remove all range protections in the spreadsheet that the user has permission to edit. var ss = SpreadsheetApp.getActive(); var protections = ss.getProtections(SpreadsheetApp.ProtectionType.RANGE); for (var i = 0; i < protections.length; i++) { var protection = protections[i]; if (protection.canEdit()) { protection.remove(); } }
// Protect the active sheet, then remove all other users from the list of editors. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.protect().setDescription('Sample protected sheet'); // Ensure the current user is an editor before removing others. Otherwise, if the user's edit // permission comes from a group, the script throws an exception upon removing the group. var me = Session.getEffectiveUser(); protection.addEditor(me); protection.removeEditors(protection.getEditors()); if (protection.canDomainEdit()) { protection.setDomainEdit(false); }
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
addEditor(emailAddress) | Protection | दिए गए उपयोगकर्ता को सुरक्षित शीट या रेंज के लिए एडिटर की सूची में जोड़ता है. |
addEditor(user) | Protection | दिए गए उपयोगकर्ता को सुरक्षित शीट या रेंज के लिए एडिटर की सूची में जोड़ता है. |
addEditors(emailAddresses) | Protection | सुरक्षित शीट या रेंज के लिए, उपयोगकर्ताओं के दिए गए अरे को एडिटर की सूची में जोड़ता है. |
addTargetAudience(audienceId) | Protection | बताई गई टारगेट ऑडियंस को सुरक्षित की गई रेंज के एडिटर के तौर पर जोड़ता है. |
canDomainEdit() | Boolean | इससे यह तय होता है कि स्प्रेडशीट के मालिकाना हक वाले डोमेन के सभी उपयोगकर्ताओं के पास बदलाव करने की अनुमति है या नहीं सुरक्षित की गई रेंज या शीट का इस्तेमाल करें. |
canEdit() | Boolean | इससे यह तय होता है कि उपयोगकर्ता के पास सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति है या नहीं. |
getDescription() | String | सुरक्षित की गई रेंज या शीट की जानकारी देता है. |
getEditors() | User[] | सुरक्षित की गई रेंज या शीट के लिए, एडिटर की सूची मिलती है. |
getProtectionType() | ProtectionType | सुरक्षित इलाके के टाइप का पता लगाता है, RANGE या SHEET . |
getRange() | Range | सुरक्षित की जा रही रेंज की जानकारी देता है. |
getRangeName() | String | अगर सुरक्षित की गई रेंज किसी नाम वाली रेंज से जुड़ी हुई है, तो उसका नाम लिया जाता है. |
getTargetAudiences() | TargetAudience[] | यह उन टारगेट ऑडियंस के आईडी दिखाता है जो सुरक्षित की गई रेंज में बदलाव कर सकते हैं. |
getUnprotectedRanges() | Range[] | किसी सुरक्षित शीट में असुरक्षित रेंज की कैटगरी लाता है. |
isWarningOnly() | Boolean | इससे पता चलता है कि सुरक्षित इलाके में, "चेतावनी के आधार पर" वाली कैटगरी का इस्तेमाल किया जा रहा है या नहीं सुरक्षा. |
remove() | void | रेंज या शीट को असुरक्षित करता है. |
removeEditor(emailAddress) | Protection | सुरक्षित शीट या रेंज के लिए, दिए गए उपयोगकर्ता को एडिटर की सूची से हटाता है. |
removeEditor(user) | Protection | सुरक्षित शीट या रेंज के लिए, दिए गए उपयोगकर्ता को एडिटर की सूची से हटाता है. |
removeEditors(emailAddresses) | Protection | सुरक्षित शीट या रेंज के लिए, एडिटर की सूची से उपयोगकर्ताओं के दिए गए कलेक्शन को हटाता है. |
removeTargetAudience(audienceId) | Protection | तय की गई टारगेट ऑडियंस को सुरक्षित की गई रेंज के एडिटर के तौर पर हटाता है. |
setDescription(description) | Protection | सुरक्षित की गई रेंज या शीट की जानकारी सेट करता है. |
setDomainEdit(editable) | Protection | सेट करता है कि स्प्रेडशीट के स्वामित्व वाले डोमेन के सभी उपयोगकर्ताओं के पास सुरक्षित की गई रेंज या शीट का इस्तेमाल करें. |
setNamedRange(namedRange) | Protection | सुरक्षित की गई रेंज को, मौजूदा नाम वाली रेंज से जोड़ता है. |
setRange(range) | Protection | सुरक्षित की जा रही रेंज में बदलाव करता है. |
setRangeName(rangeName) | Protection | सुरक्षित की गई रेंज को, मौजूदा नाम वाली रेंज से जोड़ता है. |
setUnprotectedRanges(ranges) | Protection | किसी सुरक्षित शीट में रेंज के दिए गए अरे को असुरक्षित करता है. |
setWarningOnly(warningOnly) | Protection | सेट करती है कि सुरक्षित की गई यह रेंज, "चेतावनी के आधार पर" का इस्तेमाल कर रही है या नहीं सुरक्षा. |
विस्तृत दस्तावेज़
addEditor(emailAddress)
दिए गए उपयोगकर्ता को सुरक्षित शीट या रेंज के लिए एडिटर की सूची में जोड़ता है. इस तरीके से,
उपयोगकर्ता को स्प्रेडशीट में बदलाव करने की अनुमति अपने-आप न देनी होगी; इतने समय में
इसके अलावा, Spreadsheet.addEditor(emailAddress)
पर कॉल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Adds an editor to the spreadsheet using an email address. // TODO(developer): Replace the email address with a valid email. ss.addEditor('cloudysanfrancisco@gmail.com'); // Gets a sheet by its name and protects it. const sheet = ss.getSheetByName('Sheet1'); const sampleProtectedSheet = sheet.protect(); // Adds an editor of the protected sheet using an email address. // TODO(developer): Replace the email address with a valid email. sampleProtectedSheet.addEditor('cloudysanfrancisco@gmail.com'); // Gets the editors of the protected sheet. const editors = sampleProtectedSheet.getEditors(); // Logs the editors' email addresses to the console. for (const editor of editors) { console.log(editor.getEmail()); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddress | String | जोड़ने के लिए उपयोगकर्ता का ईमेल पता. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
addEditor(user)
दिए गए उपयोगकर्ता को सुरक्षित शीट या रेंज के लिए एडिटर की सूची में जोड़ता है. इस तरीके से,
उपयोगकर्ता को स्प्रेडशीट में बदलाव करने की अनुमति अपने-आप न देनी होगी; इतने समय में
इसके अलावा, Spreadsheet.addEditor(user)
पर कॉल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Adds the active user as an editor of the protected sheet. sampleProtectedSheet.addEditor(Session.getActiveUser()); // Gets the editors of the protected sheet. const editors = sampleProtectedSheet.getEditors(); // Logs the editors' email addresses to the console. for (const editor of editors) { console.log(editor.getEmail()); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
user | User | जोड़ने के लिए व्यक्ति का प्रतिनिधित्व. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
addEditors(emailAddresses)
सुरक्षित शीट या रेंज के लिए, उपयोगकर्ताओं के दिए गए अरे को एडिटर की सूची में जोड़ता है. यह
तरीके से उपयोगकर्ताओं को स्प्रेडशीट में बदलाव करने की अनुमति अपने-आप नहीं मिलती; काम की सूची
इसके अलावा, Spreadsheet.addEditors(emailAddresses)
पर कॉल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Creates variables for the email addresses to add as editors. // TODO(developer): Replace the email addresses with valid ones. const TEST_EMAIL_1 = 'cloudysanfrancisco@gmail.com'; const TEST_EMAIL_2 = 'baklavainthebalkans@gmail.com'; // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Adds editors to the protected sheet using the email address variables. sampleProtectedSheet.addEditors([TEST_EMAIL_1, TEST_EMAIL_2]); // Gets the editors of the protected sheet. const editors = sampleProtectedSheet.getEditors(); // Logs the editors' email addresses to the console. for (const editor of editors) { console.log(editor.getEmail()); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddresses | String[] | जोड़े जाने वाले उपयोगकर्ताओं के ईमेल पतों का कलेक्शन. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
addTargetAudience(audienceId)
बताई गई टारगेट ऑडियंस को सुरक्षित की गई रेंज के एडिटर के तौर पर जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
audienceId | String | जोड़ी जाने वाली टारगेट ऑडियंस का आईडी. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
canDomainEdit()
इससे यह तय होता है कि स्प्रेडशीट के मालिकाना हक वाले डोमेन के सभी उपयोगकर्ताओं के पास बदलाव करने की अनुमति है या नहीं सुरक्षित की गई रेंज या शीट का इस्तेमाल करें. अगर उपयोगकर्ता को बदलाव करने की अनुमति नहीं है, तो अपवाद लागू करता है सुरक्षित की गई रेंज या शीट का इस्तेमाल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Logs whether domain users have permission to edit the protected sheet to the console. console.log(sampleProtectedSheet.canDomainEdit());
वापसी का टिकट
Boolean
— true
: अगर स्प्रेडशीट के मालिकाना हक वाले डोमेन के सभी उपयोगकर्ताओं के पास
सुरक्षित की गई रेंज या शीट में बदलाव करें; false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
canEdit()
इससे यह तय होता है कि उपयोगकर्ता के पास सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति है या नहीं. कॉन्टेंट बनाने स्प्रेडशीट का मालिक, सुरक्षित की गई रेंज और शीट में कभी भी बदलाव कर सकता है.
// Remove all range protections in the spreadsheet that the user has permission to edit. var ss = SpreadsheetApp.getActive(); var protections = ss.getProtections(SpreadsheetApp.ProtectionType.RANGE); for (var i = 0; i < protections.length; i++) { var protection = protections[i]; if (protection.canEdit()) { protection.remove(); } }
वापसी का टिकट
Boolean
— true
, अगर उपयोगकर्ता के पास सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति है; अगर नहीं है, तो false
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getDescription()
सुरक्षित की गई रेंज या शीट की जानकारी देता है. अगर कोई विवरण सेट नहीं है, तो यह तरीका खाली स्ट्रिंग दिखाता है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet and sets the description. const sampleProtectedSheet = sheet.protect().setDescription('Sample sheet is protected'); // Gets the description of the protected sheet and logs it to the console. const sampleProtectedSheetDescription = sampleProtectedSheet.getDescription(); console.log(sampleProtectedSheetDescription);
वापसी का टिकट
String
— सुरक्षित की गई रेंज या शीट का ब्यौरा या जानकारी न होने पर खाली स्ट्रिंग
सेट है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getEditors()
सुरक्षित की गई रेंज या शीट के लिए, एडिटर की सूची मिलती है. अगर उपयोगकर्ता ऐसा करता है, तो उसे अपवाद माना जाता है सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति नहीं है.
// Protect the active sheet, then remove all other users from the list of editors. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.protect().setDescription('Sample protected sheet'); // Ensure the current user is an editor before removing others. Otherwise, if the user's edit // permission comes from a group, the script throws an exception upon removing the group. var me = Session.getEffectiveUser(); protection.addEditor(me); protection.removeEditors(protection.getEditors()); if (protection.canDomainEdit()) { protection.setDomainEdit(false); }
वापसी का टिकट
User[]
— ऐसे उपयोगकर्ताओं का कलेक्शन जिनके पास सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getProtectionType()
सुरक्षित इलाके के टाइप का पता लगाता है, RANGE
या SHEET
.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Gets the type of the protected area. const protectionType = sampleProtectedSheet.getProtectionType(); // Logs 'SHEET'to the console since the type of the protected area is a sheet. console.log(protectionType.toString());
वापसी का टिकट
ProtectionType
— सुरक्षित इलाके का टाइप, RANGE
या SHEET
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getRange()
सुरक्षित की जा रही रेंज की जानकारी देता है. अगर शीट पर सुरक्षा लागू होती है, तो रेंज, यह तरीका ऐसी रेंज दिखाता है जो पूरी शीट में दिखती है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Gets the range 'A1:B10' of Sheet1. const range = sheet.getRange('A1:B10'); // Makes cells A1:B10 a protected range. const sampleProtectedRange = range.protect(); // Gets the protected ranges on the sheet. const protections = sheet.getProtections(SpreadsheetApp.ProtectionType.RANGE); // Logs the A1 notation of the first protected range on the sheet. console.log(protections[0].getRange().getA1Notation());
वापसी का टिकट
Range
— वह रेंज जिसे सुरक्षित किया जा रहा है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getRangeName()
अगर सुरक्षित की गई रेंज किसी नाम वाली रेंज से जुड़ी हुई है, तो उसका नाम लिया जाता है. अगर सुरक्षा किसी नाम वाली रेंज से न जुड़ी हो, तो null
लौटाता है. ध्यान दें कि स्क्रिप्ट में साफ़ तौर पर
सुरक्षित की गई रेंज को किसी नाम वाली रेंज से जोड़ने के लिए, setRangeName(rangeName)
को कॉल करें; कॉल किया जा रहा है
ऐसी Range
से सुरक्षा बनाने के लिए Range.protect()
जो
setRangeName(rangeName)
को कॉल किए बिना नाम वाली रेंज, असोसिएट करने के लिए काफ़ी नहीं है
उन्हें. हालांकि, Google Sheets के यूज़र इंटरफ़ेस (यूआई) में किसी नाम वाली रेंज से सुरक्षित की गई रेंज बनाने से,
उन्हें अपने-आप चालू कर दें.
// Protect a named range in a spreadsheet and log the name of the protected range. var ss = SpreadsheetApp.getActive(); var range = ss.getRange('A1:B10'); var protection = range.protect(); ss.setNamedRange('Test', range); // Create a named range. protection.setRangeName('Test'); // Associate the protection with the named range. Logger.log(protection.getRangeName()); // Verify the name of the protected range.
वापसी का टिकट
String
— सुरक्षित की गई नाम वाली रेंज का नाम या अगर सुरक्षित की गई रेंज नहीं है, तो null
किसी नाम वाली रेंज से जुड़ा हुआ है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getTargetAudiences()
यह उन टारगेट ऑडियंस के आईडी दिखाता है जो सुरक्षित की गई रेंज में बदलाव कर सकती हैं.
वापसी का टिकट
TargetAudience[]
— टारगेट ऑडियंस के आईडी की कैटगरी.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
getUnprotectedRanges()
किसी सुरक्षित शीट में असुरक्षित रेंज की कैटगरी लाता है. अगर Protection
ऑब्जेक्ट
सुरक्षित शीट के बजाय सुरक्षित श्रेणी से मेल खाता है, तो यह विधि किसी
कलेक्शन. असुरक्षित सीमाएं बदलने के लिए, setUnprotectedRanges(ranges)
का इस्तेमाल करके
रेंज की नई कैटगरी; पूरी शीट को फिर से सुरक्षित करने के लिए, खाली अरे सेट करें.
// Unprotect cells E2:F5 in addition to any other unprotected ranges in the protected sheet. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.protect(); var unprotected = protection.getUnprotectedRanges(); unprotected.push(sheet.getRange('E2:F5')); protection.setUnprotectedRanges(unprotected);
वापसी का टिकट
Range[]
— सुरक्षित शीट में असुरक्षित रेंज का कलेक्शन
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
isWarningOnly()
इससे पता चलता है कि सुरक्षित इलाके में, "चेतावनी के आधार पर" कैटगरी का इस्तेमाल किया जा रहा है या नहीं सुरक्षा. चेतावनी पर आधारित सुरक्षा
इसका मतलब है कि हर उपयोगकर्ता उस क्षेत्र में डेटा में बदलाव कर सकता है. हालांकि, बदलाव करने पर यह चेतावनी नहीं दिखेगी
संपादन की पुष्टि करें. डिफ़ॉल्ट रूप से, सुरक्षित की गई रेंज या शीट चेतावनी पर आधारित नहीं होती हैं. यहां की यात्रा पर हूं
चेतावनी की स्थिति में बदलाव करने के लिए, setWarningOnly(warningOnly)
का इस्तेमाल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit') // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Sets the warning status for the protected sheet as true. sampleProtectedSheet.setWarningOnly(true); const protectedSheetWarningStatus = sampleProtectedSheet.isWarningOnly(); // Logs the warning status of the protected sheet to the console. console.log(protectedSheetWarningStatus);
वापसी का टिकट
Boolean
— true
, अगर सुरक्षित की गई रेंज या शीट में सिर्फ़ चेतावनी आधारित सुरक्षा मोड का इस्तेमाल किया जा रहा है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
remove()
रेंज या शीट को असुरक्षित करता है.
// Remove all range protections in the spreadsheet that the user has permission to edit. var ss = SpreadsheetApp.getActive(); var protections = ss.getProtections(SpreadsheetApp.ProtectionType.RANGE); for (var i = 0; i < protections.length; i++) { var protection = protections[i]; if (protection.canEdit()) { protection.remove(); } }
// Remove sheet protection from the active sheet, if the user has permission to edit it. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.getProtections(SpreadsheetApp.ProtectionType.SHEET)[0]; if (protection && protection.canEdit()) { protection.remove(); }
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
removeEditor(emailAddress)
सुरक्षित शीट या रेंज के लिए, दिए गए उपयोगकर्ता को एडिटर की सूची से हटाता है. ध्यान दें कि अगर उपयोगकर्ता किसी ऐसे Google ग्रुप का सदस्य है जिसके पास बदलाव करने की अनुमति है या अगर डोमेन के सभी उपयोगकर्ता हैं बदलाव करने की अनुमति नहीं है, तब भी उपयोगकर्ता संरक्षित क्षेत्र में बदलाव कर सकता है. मालिक भी नहीं है हटाया जा सकता है और न ही वर्तमान उपयोगकर्ता को निकाला जा सकता है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Creates a variable for an email address. // TODO(developer): Replace the email address with a valid one. const TEST_EMAIL = 'baklavainthebalkans@gmail.com'; // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Adds an editor to the protected sheet using the email address variable. sampleProtectedSheet.addEditor(TEST_EMAIL); // Removes the editor from the protected sheet using the email address variable. sampleProtectedSheet.removeEditor(TEST_EMAIL); // Gets the editors of the protected sheet. const editors = sampleProtectedSheet.getEditors(); // Logs the editors' email addresses to the console. for (const editor of editors) { console.log(editor.getEmail()); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddress | String | उपयोगकर्ता का ईमेल पता जिसे हटाना है. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
removeEditor(user)
सुरक्षित शीट या रेंज के लिए, दिए गए उपयोगकर्ता को एडिटर की सूची से हटाता है. ध्यान दें कि अगर उपयोगकर्ता किसी ऐसे Google ग्रुप का सदस्य है जिसके पास बदलाव करने की अनुमति है या अगर डोमेन के सभी उपयोगकर्ता हैं करने की अनुमति नहीं है, तब भी उपयोगकर्ता संरक्षित क्षेत्र को संपादित कर सकता है. ऐसा नहीं है हो सकता है कि स्प्रेडशीट के मालिक या मौजूदा उपयोगकर्ता को हटाया न जाए.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets a sheet by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Removes the active user from the editors of the protected sheet. sampleProtectedSheet.removeEditor(Session.getActiveUser()); // Gets the editors of the protected sheet. const editors = sampleProtectedSheet.getEditors(); // Logs the editors' email addresses to the console. for (const editor of editors) { console.log(editor.getEmail()); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
user | User | उपयोगकर्ता का ऐसा इलस्ट्रेशन जिसे हटाना है. |
वापसी का टिकट
Protection
— चेन बनाने के लिए, सुरक्षा सेटिंग दिखाने वाला ऑब्जेक्ट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
removeEditors(emailAddresses)
सुरक्षित शीट या रेंज के लिए, एडिटर की सूची से उपयोगकर्ताओं के दिए गए कलेक्शन को हटाता है. ध्यान दें कि अगर कोई उपयोगकर्ता किसी ऐसे Google ग्रुप का सदस्य है जिसके पास बदलाव करने की अनुमति है या अगर वे सभी डोमेन के उपयोगकर्ताओं के पास संपादन की अनुमति होती है, वे उपयोगकर्ता अभी भी सुरक्षित क्षेत्र. न तो स्प्रेडशीट के मालिक को हटाया जा सकता है और न ही मौजूदा उपयोगकर्ता को.
// Protect the active sheet, then remove all other users from the list of editors. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.protect().setDescription('Sample protected sheet'); // Ensure the current user is an editor before removing others. Otherwise, if the user's edit // permission comes from a group, the script throws an exception upon removing the group. var me = Session.getEffectiveUser(); protection.addEditor(me); protection.removeEditors(protection.getEditors()); if (protection.canDomainEdit()) { protection.setDomainEdit(false); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddresses | String[] | जिन उपयोगकर्ताओं को हटाना है उनके ईमेल पतों का कलेक्शन. |
वापसी का टिकट
Protection
— चेन बनाने के लिए, सुरक्षा सेटिंग दिखाने वाला ऑब्जेक्ट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
removeTargetAudience(audienceId)
बताई गई टारगेट ऑडियंस को सुरक्षित की गई रेंज के एडिटर के तौर पर हटाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
audienceId | String | हटाई जाने वाली टारगेट ऑडियंस का आईडी. |
वापसी का टिकट
Protection
— चेन करने के लिए सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setDescription(description)
सुरक्षित की गई रेंज या शीट की जानकारी सेट करता है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets the sheet 'Sheet1' by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet. const sampleProtectedSheet = sheet.protect(); // Sets the sheet description to 'Sheet1 is protected.' sampleProtectedSheet.setDescription('Sheet1 is protected'); // Gets the description of the protected sheet. const sampleProtectedSheetDescription = sampleProtectedSheet.getDescription(); // Logs the description of the protected sheet to the console. console.log(sampleProtectedSheetDescription);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
description | String | सुरक्षित की गई रेंज या शीट की जानकारी. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setDomainEdit(editable)
सेट करता है कि स्प्रेडशीट के स्वामित्व वाले डोमेन के सभी उपयोगकर्ताओं के पास सुरक्षित की गई रेंज या शीट का इस्तेमाल करें. ध्यान दें कि जिन उपयोगकर्ताओं के पास बदलाव करने की साफ़ तौर पर अनुमति है वे ये काम कर सकते हैं इस सेटिंग पर ध्यान दिए बिना, सुरक्षित इलाके की जानकारी में बदलाव किया जा सकता है. अगर स्प्रेडशीट Google Workspace डोमेन से जुड़ा न हो (अगर इसका मालिकाना हक gmail.com खाते के पास है).
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
editable | Boolean | true अगर स्प्रेडशीट के मालिकाना हक वाले डोमेन के सभी उपयोगकर्ताओं के पास
सुरक्षित की गई रेंज या शीट में बदलाव करने की अनुमति; अगर नहीं है, तो false . |
वापसी का टिकट
Protection
— चेन बनाने के लिए, सुरक्षा सेटिंग दिखाने वाला ऑब्जेक्ट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setNamedRange(namedRange)
सुरक्षित की गई रेंज को, मौजूदा नाम वाली रेंज से जोड़ता है. अगर नाम वाली रेंज में
से अलग क्षेत्र है, तो यह तरीका सुरक्षा को ऐसी
नाम वाली रेंज का इस्तेमाल करें. नाम वाली रेंज उसी शीट पर होनी चाहिए जिस पर मौजूदा सुरक्षित की गई है
रेंज. ध्यान दें कि स्क्रिप्ट को किसी सुरक्षित श्रेणी को
नाम वाली रेंज; Range
की सुरक्षा के लिए, Range.protect()
को कॉल किया जा रहा है
जो setRangeName(rangeName)
को कॉल किए बिना, एक नाम वाली रेंज होती है
उसे जोड़ने के लिए काफ़ी है. हालांकि,
Google Sheets का यूज़र इंटरफ़ेस (यूआई), उन्हें अपने-आप जोड़ता है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Protects cells A1:D10 on Sheet1. const sheet = ss.getSheetByName('Sheet1'); const protectedRange = sheet.getRange('A1:D10').protect(); // Logs the current protected range, A1:D10. console.log(protectedRange.getRange().getA1Notation()); // Creates a named range for cells E1:J10 called 'NewRange.' const newRange = sheet.getRange('E1:J10'); ss.setNamedRange('NewRange', newRange); const namedRange = ss.getNamedRanges()[0]; // Updates the protected range to the named range, 'NewRange.' // This updates the protected range on Sheet1 from A1:D10 to E1:J10. protectedRange.setNamedRange(namedRange); // Logs the updated protected range to the console. console.log(protectedRange.getRange().getA1Notation());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
namedRange | NamedRange | सुरक्षित की गई रेंज के साथ जोड़ने के लिए, मौजूदा नाम वाली रेंज. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setRange(range)
सुरक्षित की जा रही रेंज में बदलाव करता है. अगर दी गई रेंज, मौजूदा सुरक्षित रेंज है, तो यह तरीका सुरक्षा को नई रेंज को कवर करने के लिए ले जाता है.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Protects cells A1:D10 on Sheet1 of the spreadsheet. const sheet = ss.getSheetByName('Sheet1'); const protectedRange = sheet.getRange('A1:D10').protect(); // Logs the original protected range, A1:D10, to the console. console.log(protectedRange.getRange().getA1Notation()); // Gets the range E1:J10. const newRange = sheet.getRange('E1:J10'); // Updates the protected range to E1:J10. protectedRange.setRange(newRange); // Logs the updated protected range to the console. console.log(protectedRange.getRange().getA1Notation());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
range | Range | बदलावों से सुरक्षित करने के लिए नई रेंज. |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setRangeName(rangeName)
सुरक्षित की गई रेंज को, मौजूदा नाम वाली रेंज से जोड़ता है. अगर नाम वाली रेंज में
से अलग क्षेत्र है, तो यह तरीका सुरक्षा को ऐसी
नाम वाली रेंज का इस्तेमाल करें. नाम वाली रेंज उसी शीट पर होनी चाहिए जिस पर मौजूदा सुरक्षित की गई है
रेंज. ध्यान दें कि स्क्रिप्ट को किसी सुरक्षित श्रेणी को
नाम वाली रेंज; Range
की सुरक्षा के लिए, Range.protect()
को कॉल किया जा रहा है
जो setRangeName(rangeName)
को कॉल किए बिना, एक नाम वाली रेंज होती है
उसे जोड़ने के लिए काफ़ी है. हालांकि,
Google Sheets का यूज़र इंटरफ़ेस (यूआई), उन्हें अपने-आप जोड़ता है.
// Protect a named range in a spreadsheet and log the name of the protected range. var ss = SpreadsheetApp.getActive(); var range = ss.getRange('A1:B10'); var protection = range.protect(); ss.setNamedRange('Test', range); // Create a named range. protection.setRangeName('Test'); // Associate the protection with the named range. Logger.log(protection.getRangeName()); // Verify the name of the protected range.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
rangeName | String | सुरक्षित की जाने वाली नाम वाली रेंज का नाम. |
वापसी का टिकट
Protection
— चेन बनाने के लिए, सुरक्षा सेटिंग दिखाने वाला ऑब्जेक्ट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setUnprotectedRanges(ranges)
किसी सुरक्षित शीट में रेंज के दिए गए अरे को असुरक्षित करता है. अपवाद देता है अगर
Protection
ऑब्जेक्ट, सुरक्षित की गई शीट के बजाय सुरक्षित रेंज से जुड़ा है या अगर
कोई भी रेंज सुरक्षित शीट पर नहीं है. असुरक्षित सीमाएं बदलने के लिए, नई रेंज सेट करें
रेंज का कलेक्शन; पूरी शीट को फिर से सुरक्षित करने के लिए, खाली अरे सेट करें.
// Protect the active sheet except B2:C5, then remove all other users from the list of editors. var sheet = SpreadsheetApp.getActiveSheet(); var protection = sheet.protect().setDescription('Sample protected sheet'); var unprotected = sheet.getRange('B2:C5'); protection.setUnprotectedRanges([unprotected]); // Ensure the current user is an editor before removing others. Otherwise, if the user's edit // permission comes from a group, the script throws an exception upon removing the group. var me = Session.getEffectiveUser(); protection.addEditor(me); protection.removeEditors(protection.getEditors()); if (protection.canDomainEdit()) { protection.setDomainEdit(false); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
ranges | Range[] | किसी सुरक्षित शीट में असुरक्षित छोड़ने के लिए रेंज का कलेक्शन. |
वापसी का टिकट
Protection
— चेन बनाने के लिए, सुरक्षा सेटिंग दिखाने वाला ऑब्जेक्ट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
setWarningOnly(warningOnly)
सेट करती है कि सुरक्षित की गई यह रेंज, "चेतावनी के आधार पर" का इस्तेमाल कर रही है या नहीं सुरक्षा. चेतावनी-आधारित
सुरक्षा का मतलब है कि हर उपयोगकर्ता, एरिया में किए गए डेटा में बदलाव कर सकता है. हालांकि, बदलाव करने पर चेतावनी वाले मैसेज नहीं दिखेंगे
उपयोगकर्ता से बदलाव की पुष्टि करने के लिए कहें. सुरक्षित की गई रेंज या शीट, डिफ़ॉल्ट रूप से
चेतावनी के आधार पर. चेतावनी की स्थिति देखने के लिए, isWarningOnly()
का इस्तेमाल करें.
// Opens the spreadsheet file by its URL. If you created your script from within // a Google Sheets file, you can use SpreadsheetApp.getActiveSpreadsheet() instead. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); // Gets the sheet 'Sheet1' by its name. const sheet = ss.getSheetByName('Sheet1'); // Protects the sheet and sets the protection to warning-based. const sampleProtectedSheet = sheet.protect().setWarningOnly(true); // Logs whether the protected sheet is warning-based to the console. console.log(sampleProtectedSheet.isWarningOnly());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
warningOnly | Boolean |
वापसी का टिकट
Protection
— चेन करने के लिए, सुरक्षा सेटिंग को दिखाने वाला ऑब्जेक्ट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets