संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
RecalculationInterval
स्प्रेडशीट की रीकैलकुलेशन की प्रोसेस में इस्तेमाल किए जा सकने वाले संभावित इंटरवल दिखाने वाला इन्युमेशन.
किसी Enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होता है. उदाहरण के लिए,
SpreadsheetApp.RecalculationInterval.ON_CHANGE.
प्रॉपर्टी
प्रॉपर्टी
Type
ब्यौरा
ON_CHANGE
Enum
वैल्यू बदलने पर ही फिर से गिनती करें.
MINUTE
Enum
वैल्यू बदलने पर और हर मिनट होने पर फिर से हिसाब लगाएं.
HOUR
Enum
हर घंटे और वैल्यू में बदलाव होने पर, फिर से हिसाब लगाएं.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2023-12-01 (UTC) को अपडेट किया गया."],[[["`RecalculationInterval` is used to control the frequency of spreadsheet recalculations within Google Apps Script."],["It offers three options: `ON_CHANGE`, `MINUTE`, and `HOUR`, allowing for recalculation triggered by value changes, every minute, or every hour, respectively."],["To use these options, refer to them using the format `SpreadsheetApp.RecalculationInterval.[property]`, such as `SpreadsheetApp.RecalculationInterval.ON_CHANGE`."]]],[]]