সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি উপস্থাপনা বস্তুর জীবনচক্রে তিনটি প্রধান পর্যায় রয়েছে: খোলা, সম্পাদনা এবং সংরক্ষণ।
একটি উপস্থাপনা খোলা
স্লাইড পরিষেবা ব্যবহার করার সময়, প্রথম ধাপ হল একটি উপস্থাপনা লোড করা। SlidesApp.openById() এবং SlidesApp.getActivePresentation() এর মত পদ্ধতিগুলি একটি বিদ্যমান স্লাইড উপস্থাপনা লোড করে, যখন SlidesApp.create() একটি নতুন উপস্থাপনা তৈরি করে৷ এই পদ্ধতিগুলি একটি উপস্থাপনা বস্তু প্রদান করে যা লোড করা উপস্থাপনাকে উপস্থাপন করে।
একবার একটি উপস্থাপনা খোলা হলে, এটি সহযোগীদের থেকে আর কোনো আপডেট পায় না। উপস্থাপনাগুলি সাধারণত তাদের সর্বশেষ সংস্করণে খোলা হয় যা ড্রাইভে সংরক্ষিত হয়েছে৷ যাইহোক, যদি একটি স্ক্রিপ্ট একটি উপস্থাপনায় ধারক-আবদ্ধ হয়, তাহলে সেই উপস্থাপনাটি স্লাইড সম্পাদকের সাথে থাকা একই সংস্করণে লোড হবে।
একটি উপস্থাপনা পরিবর্তন
একবার একটি উপস্থাপনা খোলা হলে, একটি স্ক্রিপ্ট এটি পড়তে এবং সংশোধন করতে পারে। উপস্থাপনায় স্ক্রিপ্ট যে কোনো পরিবর্তন করে তা স্ক্রিপ্ট সম্পাদনের সময়কালের জন্য পরবর্তী পঠিত এবং পরিবর্তনগুলিতে প্রতিফলিত হয়।
পরিবর্তন সংরক্ষণ করা হচ্ছে
একটি প্রেজেন্টেশনে পরিবর্তন করার পর, যখন স্ক্রিপ্ট এক্সিকিউশন সম্পূর্ণ হয়, অথবা যখন Presentation.saveAndClose() বলা হয় তখন পরিবর্তনগুলি একবারে সংরক্ষিত হয়। পরিবর্তনগুলি সংরক্ষিত হওয়ার পরে, তারা ব্যবহারকারীর সম্পাদকের কাছে অ্যাসিঙ্ক্রোনাসভাবে প্রচার করে, যেন পরিবর্তনগুলি কোনও সহযোগী দ্বারা করা হয়েছে৷
Presentation.saveAndClose() ব্যবহার করে একটি উপস্থাপনা বন্ধ করার পরে, উপস্থাপনা লোডিং পদ্ধতিগুলির একটি ব্যবহার করে এটি সম্পাদনা করার জন্য পুনরায় খোলা যেতে পারে।
[[["সহজে বোঝা যায়","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"]],["2025-08-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eThe Slides service allows you to open existing or create new Google Slides presentations for manipulation within Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eScripts can modify presentations, with changes reflected immediately within the script but saved and propagated to the editor upon script completion or explicit save.\u003c/p\u003e\n"],["\u003cp\u003eSaving changes to a presentation is done automatically at the end of script execution or manually using \u003ccode\u003ePresentation.saveAndClose()\u003c/code\u003e, after which the presentation can be reopened.\u003c/p\u003e\n"]]],[],null,["# Life cycle of a presentation update\n\nThere are three main phases in the life cycle of a\n[Presentation](/apps-script/reference/slides/presentation) object: opening,\nediting, and saving.\n\nOpening a presentation\n----------------------\n\nWhen using the Slides Service, the first step is to load a presentation. Methods\nlike [SlidesApp.openById()](/apps-script/reference/slides/slides-app#openbyidid)\nand [SlidesApp.getActivePresentation()](/apps-script/reference/slides/slides-app#getactivepresentation)\nload an existing Slides presentation, while\n[SlidesApp.create()](/apps-script/reference/slides/slides-app#createname)\ncreates a new presentation. These methods return a\n[Presentation](/apps-script/reference/slides/presentation) object that\nrepresents the loaded presentation.\n\nOnce a presentation is open, it does not receive any further updates from\ncollaborators. Presentations are usually opened at their latest version that has\nbeen saved in Drive. However, if a script is container-bound to a presentation,\nthat presentation will be loaded at the same version as the accompanying Slides\neditor.\n\nModifying a presentation\n------------------------\n\nOnce a presentation is open, a script can read and modify it. Any changes that\nthe script makes to the presentation are reflected in subsequent reads and\nmodifications for the duration of the script execution.\n\nSaving changes\n--------------\n\nAfter making changes to a presentation, the changes are saved all at once\nwhen the script execution completes, or when [Presentation.saveAndClose()](/apps-script/reference/slides/presentation#saveandclose) is\ncalled. After changes are saved, they propagate asynchronously to the\nuser's editor, as if the changes were made by a collaborator.\n\nAfter a presentation is closed using `Presentation.saveAndClose()`, it can be\nreopened for editing using one of the presentation loading methods."]]