google-apps-script
स्प्रेडशीट मेनू जोड़ें
खोज…
वाक्य - विन्यास
- addMenu (नाम, सबमेनस)
पैरामीटर
नाम | विवरण |
---|---|
नाम | बनाने के लिए मेनू का नाम |
सबमेनू | जावास्क्रिप्ट नक्शे की एक सरणी |
टिप्पणियों
आमतौर पर, आप onMpen फ़ंक्शन से addMenu को कॉल करना चाहेंगे ताकि स्प्रेडशीट लोड होने पर मेनू स्वचालित रूप से बन जाए।
// The onOpen function is executed automatically every time a Spreadsheet is loaded
function onOpen() {
var activeSheet = SpreadsheetApp.getActiveSpreadsheet();
var menuItems = [];
// When the user clicks on "addMenuExample" then "Menu 1", the function Myfunction1 is executed.
menuItems.push({name: "Menu 1", functionName: "Myfunction1"});
menuItems.push(null); // adding line separator
menuItems.push({name: "Menu 2", functionName: "Myfunction2"});
activeSheet.addMenu("addMenuExample", menuEntries);
}
एक नया मेनू बनाएँ
स्प्रेडशीट UI में एक नया मेनू बनाता है। प्रत्येक मेनू प्रविष्टि उपयोगकर्ता द्वारा परिभाषित फ़ंक्शन चलाती है।
var activeSheet = SpreadsheetApp.getActiveSpreadsheet();
var menuItems = [];
// When the user clicks on "addMenuExample" then "Menu 1", the function Myfunction1 is executed.
menuItems.push({name: "Menu 1", functionName: "Myfunction1"});
menuItems.push(null); // adding line separator
menuItems.push({name: "Menu 2", functionName: "Myfunction2"});
activeSheet.addMenu("addMenuExample", menuEntries);
कस्टम मेनू बनाएँ
/ *
विधि: कस्टम मेनू बनाने के लिए यह पहला फ़ंक्शन है जिसे ऐप लोड कहा जाता है
* /
function onOpen() {
var ui = SpreadsheetApp.getUi();
// Or DocumentApp or FormApp.
ui.createMenu('My HR')
.addItem('Send Form to All', 'sendIDPForm_All')
.addItem('Trigger IDP System', 'applyCategory')
.addToUi();
}
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow