[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eSlidePosition\u003c/code\u003e determines the relative position of a slide within a Google Slides presentation.\u003c/p\u003e\n"],["\u003cp\u003eYou can use properties like \u003ccode\u003eNEXT_SLIDE\u003c/code\u003e, \u003ccode\u003ePREVIOUS_SLIDE\u003c/code\u003e, \u003ccode\u003eFIRST_SLIDE\u003c/code\u003e, and \u003ccode\u003eLAST_SLIDE\u003c/code\u003e to specify the desired slide position.\u003c/p\u003e\n"],["\u003cp\u003eTo reference a specific slide position, use the syntax \u003ccode\u003eSlidesApp.SlidePosition.PROPERTY_NAME\u003c/code\u003e, for example, \u003ccode\u003eSlidesApp.SlidePosition.FIRST_SLIDE\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["SlidePosition\n\nThe relative position of a [Slide](/apps-script/reference/slides/slide).\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSlidesApp.SlidePosition.NEXT_SLIDE`. \n\nProperties\n\n| Property | Type | Description |\n|------------------|--------|--------------------------------------|\n| `NEXT_SLIDE` | `Enum` | The next slide. |\n| `PREVIOUS_SLIDE` | `Enum` | The previous slide. |\n| `FIRST_SLIDE` | `Enum` | The first slide in the presentation. |\n| `LAST_SLIDE` | `Enum` | The last slide in the presentation. |"]]