Class Image Stay organized with collections Save and categorize content based on your preferences.
Page Summary
The Image object represents an image as a PageElement in Google Slides.
You can manipulate the position and layer of an image using methods like
alignOnPage,bringForward,bringToFront,sendBackward, andsendToBack.The image data can be accessed as a Blob using
getAs()andgetBlob().You can retrieve information about the image such as its border, connection sites, content URL, description, dimensions, position, link, object ID, parent elements, rotation, source URL, title, and transform using various
getmethods.Images can be duplicated, removed, and replaced using
duplicate,remove, andreplacemethods respectively.You can scale the height and width of an image using
scaleHeightandscaleWidth.Images can be selected programmatically using the
selectmethod.You can set properties like the description, height, left position, link to a slide or URL, rotation, title, top position, and transform using the corresponding
setmethods.
APage representing an image.
Methods
| Method | Return type | Brief description |
|---|---|---|
align | Image | Aligns the element to the specified alignment position on the page. |
bring | Image | Brings the page element forward on the page by one element. |
bring | Image | Brings the page element to the front of the page. |
duplicate() | Page | Duplicates the page element. |
get | Blob | Return the data inside this object as a blob converted to the specified content type. |
get | Blob | Return the data inside this image as a blob. |
get | Border | Returns theBorder of the image. |
get | Connection | Returns the list ofConnections on the page element, or an empty list if the pageelement does not have any connection sites. |
get | String | Gets a URL to the image. |
get | String | Returns the page element's alt text description. |
get | Number|null | Gets the element's height in points, which is the height of the element's bounding box when theelement has no rotation. |
get | Number|null | Returns the element's inherent height in points. |
get | Number|null | Returns the element's inherent width in points. |
get | Number | Returns the element's horizontal position in points, measured from the upper-left corner of thepage when the element has no rotation. |
get | Link|null | Returns theLink ornull if there is no link. |
get | String | Returns the unique ID for this object. |
get | Page | Returns the page element's type, represented as aPage enum. |
get | Group|null | Returns the group this page element belongs to, ornull if the element is not in agroup. |
get | Page | Returns the page this page element is on. |
get | Page | Returns the parent page element of the placeholder. |
get | Integer|null | Returns the index of the placeholder image. |
get | Placeholder | Returns the placeholder type of the image, orPlaceholder if the shape is nota placeholder. |
get | Number | Returns the element's clockwise rotation angle around its center in degrees, where zero degreesmeans no rotation. |
get | String|null | Gets the image's source URL, if available. |
get | String | Returns the page element's alt text title. |
get | Number | Gets the element's vertical position in points, measured from the upper-left corner of the pagewhen the element has no rotation. |
get | Affine | Returns the page element's transform. |
get | Number|null | Returns the element's width in points, which is the width of the element's bounding box whenthe element has no rotation. |
preconcatenate | Image | Preconcatenates the provided transform to the existing transform of the page element. |
remove() | void | Removes the page element. |
remove | void | Removes aLink. |
replace(blobSource) | Image | Replaces this image with an image described by aBlob object. |
replace(blobSource, crop) | Image | Replaces this image with an image described by aImage object, optionally croppingthe image to fit. |
replace(imageUrl) | Image | Replaces this image with another image downloaded from the provided URL. |
replace(imageUrl, crop) | Image | Replaces this image with another image downloaded from the provided URL, optionally croppingthe image to fit. |
scale | Image | Scales the element's height by the specified ratio. |
scale | Image | Scales the element's width by the specified ratio. |
select() | void | Selects only thePage in the active presentation and removes any previousselection. |
select(replace) | void | Selects thePage in the active presentation. |
send | Image | Sends the page element backward on the page by one element. |
send | Image | Sends the page element to the back of the page. |
set | Image | Sets the page element's alt text description. |
set | Image | Sets the element's height in points, which is the height of the element's bounding box when theelement has no rotation. |
set | Image | Sets the element's horizontal position in points, measured from the upper-left corner of thepage when the element has no rotation. |
set | Link | Sets aLink to the givenSlide using the zero-based index of the slide. |
set | Link | Sets aLink to the givenSlide, the link is set by the given slide ID. |
set | Link | Sets aLink to the givenSlide using the relative position of the slide. |
set | Link | Sets aLink to the given non-empty URL string. |
set | Image | Sets the element's clockwise rotation angle around its center in degrees. |
set | Image | Sets the page element's alt text title. |
set | Image | Sets the element's vertical position in points, measured from the upper-left corner of the pagewhen the element has no rotation. |
set | Image | Sets the transform of the page element with the provided transform. |
set | Image | Sets the element's width in points, which is the width of the element's bounding box when theelement has no rotation. |
Detailed documentation
alignOnPage(alignmentPosition)
Aligns the element to the specified alignment position on the page.
Parameters
| Name | Type | Description |
|---|---|---|
alignment | Alignment | The position to align this page element to on the page. |
Return
Image — This page element, for chaining.
bringForward()
Brings the page element forward on the page by one element.
The page element must not be in a group.
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
bringToFront()
Brings the page element to the front of the page.
The page element must not be in a group.
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
duplicate()
Duplicates the page element.
The duplicate page element is placed on the same page at the same position as the original.
Return
Page — The new duplicate of this page element.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getAs(contentType)
Return the data inside this object as a blob converted to the specified content type. Thismethod adds the appropriate extension to the filename—for example, "myfile.pdf". However, itassumes that the part of the filename that follows the last period (if any) is an existingextension that should be replaced. Consequently, "ShoppingList.12.25.2014" becomes"ShoppingList.12.25.pdf".
To view the daily quotas for conversions, seeQuotas for GoogleServices. Newly created Google Workspace domains might be temporarily subject to stricterquotas.
Parameters
| Name | Type | Description |
|---|---|---|
content | String | The MIME type to convert to. For most blobs,'application/pdf' is the only valid option. For images in BMP, GIF, JPEG, or PNG format, any of'image/bmp','image/gif','image/jpeg', or'image/png' are also valid. For a Google Docs document,'text/markdown' is also valid. |
Return
Blob — The data as a blob.
getBlob()
getBorder()
getConnectionSites()
Returns the list ofConnections on the page element, or an empty list if the pageelement does not have any connection sites.
Return
Connection — The connection sites list, which may be empty if this element has no connection sites.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getContentUrl()
Gets a URL to the image.
This URL is tagged with the account of the requester, so anyone with the URL effectivelyaccesses the image as the original requester. Access to the image may be lost if thepresentation's sharing settings change. The returned URL expires after a short period of time.
Return
String
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getDescription()
Returns the page element's alt text description. The description is combined with the title todisplay and read alt text.
Return
String — The page element's alt text description.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getHeight()
Gets the element's height in points, which is the height of the element's bounding box when theelement has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Return
Number|null — The page element's inherent height in points, ornull if the page element does not have a height.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getInherentHeight()
Returns the element's inherent height in points.
The page element's transform is relative to its inherent size. Use the inherent size inconjunction with the element's transform to determine the element's final visual appearance.
Return
Number|null — The page element's inherent height in points, ornull if the page element does not have a height.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getInherentWidth()
Returns the element's inherent width in points.
The page element's transform is relative to its inherent size. Use the inherent size inconjunction with the element's transform to determine the element's final visual appearance.
Return
Number|null — The page element's inherent width in points, ornull if the page element does not have a width.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getLeft()
Returns the element's horizontal position in points, measured from the upper-left corner of thepage when the element has no rotation.
Return
Number — This element's horizontal position in points, from the upper-left corner of the page.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getLink()
Returns theLink ornull if there is no link.
constshape=SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];constlink=shape.getLink();if(link!=null){Logger.log(`Shape has a link of type:${link.getLinkType()}`);}
Return
Link|null — TheLink ornull if there is no link.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getObjectId()
Returns the unique ID for this object. Object IDs used by pages and page elements share thesame namespace.
Return
String — The unique ID for this object.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getPageElementType()
Returns the page element's type, represented as aPage enum.
Return
Page — The page element's type.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getParentGroup()
Returns the group this page element belongs to, ornull if the element is not in agroup.
Return
Group|null — The group this page element belongs to, ornull.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getParentPage()
getParentPlaceholder()
Returns the parent page element of the placeholder. Returnsnull if the image is not aplaceholder or has no parent.
Return
Page — The parent page element of this image placeholder, ornull if this image is not a placeholder or doesn't have a parent.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getPlaceholderIndex()
Returns the index of the placeholder image. If two or more placeholder images on the same pageare the same type, they each have a unique index value. Returnsnull if the image isn'ta placeholder.
Return
Integer|null — This image's placeholder index, ornull if the image isn't a placeholder.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getPlaceholderType()
Returns the placeholder type of the image, orPlaceholder if the shape is nota placeholder.
Return
Placeholder — The placeholder type of this image.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getRotation()
Returns the element's clockwise rotation angle around its center in degrees, where zero degreesmeans no rotation.
Return
Number — The rotation angle in degrees between 0 (inclusive) and 360 (exclusive).
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getSourceUrl()
Gets the image's source URL, if available.
When an image is inserted by URL, returns the URL provided during image insertion.
Return
String|null — The image URL ornull if the image does not have a source URL.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getTitle()
Returns the page element's alt text title. The title is combined with the description todisplay and read alt text.
Return
String — The page element's alt text title.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getTop()
Gets the element's vertical position in points, measured from the upper-left corner of the pagewhen the element has no rotation.
Return
Number — This element's vertical position in points, from the upper-left corner of the page.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getTransform()
Returns the page element's transform.
The visual appearance of the page element is determined by its absolute transform. Tocompute the absolute transform, preconcatenate a page element's transform with the transformsof all of its parent groups. If the page element is not in a group, its absolute transform isthe same as the value in this field.
Return
Affine — The page element's transform.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
getWidth()
Returns the element's width in points, which is the width of the element's bounding box whenthe element has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Return
Number|null — The page element's inherent width in points, ornull if the page element does not have a width.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
preconcatenateTransform(transform)
Preconcatenates the provided transform to the existing transform of the page element.
newTransform = argument * existingTransform;
For example, to move a page elements 36 points to the left:
constelement=SlidesApp.getActivePresentation().getSlides()[0].getPageElements()[0];element.preconcatenateTransform(SlidesApp.newAffineTransformBuilder().setTranslateX(-36.0).build(),);
You can also replace the page element's transform withset.
Parameters
| Name | Type | Description |
|---|---|---|
transform | Affine | The transform to preconcatenate onto this page element's transform. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
remove()
Removes the page element.
If after a remove operation, aGroup contains only one or no page elements, thegroup itself is also removed.
If a placeholderPage is removed on a master or layout, any empty inheritingplaceholders are also removed.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
removeLink()
Removes aLink.
constslides=SlidesApp.getActivePresentation().getSlides();slides[1].getShapes()[0].removeLink();
replace(blobSource)
Replaces this image with an image described by aBlob object.
Inserting the image fetches it from theBlob once and a copy is stored for display inside the presentation.Images must be less than 50MB in size, cannot exceed 25 megapixels, and must be in either inPNG, JPEG, or GIF format.
In order to maintain the image's aspect ratio, the image is scaled and centered with respectto the size of the existing image.
constimage=SlidesApp.getActivePresentation().getSlides()[0].getImages()[0];// Get the Drive image file with the given ID.constdriveImage=DriveApp.getFileById("123abc");image.replace(driveImage);
Parameters
| Name | Type | Description |
|---|---|---|
blob | Blob | The image data. |
Return
Image — ThisImage after the replacement.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
replace(blobSource, crop)
Replaces this image with an image described by aImage object, optionally croppingthe image to fit.
Inserting the image fetches it from theBlob once and a copy is stored for display inside the presentation.Images must be less than 50MB in size, cannot exceed 25 megapixels, and must be in either inPNG, JPEG, or GIF format.
constimage=SlidesApp.getActivePresentation().getSlides()[0].getImages()[0];// Get the Drive image file with the given ID.constdriveImage=DriveApp.getFileById('123abc');// Replace and crop the drive image.image.replace(driveImage,true);
Parameters
| Name | Type | Description |
|---|---|---|
blob | Blob | The image data. |
crop | Boolean | Iftrue, crops the image to fit the existing image's size. Otherwise, the image is scaled and centered. |
Return
Image — ThisImage after the replacement.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
replace(imageUrl)
Replaces this image with another image downloaded from the provided URL.
Inserting the image fetches it from the URL once and a copy is stored for display inside thepresentation. Images must be less than 50MB in size, cannot exceed 25 megapixels, and must bein either in PNG, JPEG, or GIF format.
The provided URL must be publicly accessible and no larger than 2kB. The URL itself is savedwith the image and exposed viaget.
In order to maintain the image's aspect ratio, the image is scaled and centered with respectto the size of the existing image.
Parameters
| Name | Type | Description |
|---|---|---|
image | String | The URL to download the image from. |
Return
Image — ThisImage after the replacement.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
replace(imageUrl, crop)
Replaces this image with another image downloaded from the provided URL, optionally croppingthe image to fit.
Inserting the image fetches it from the URL once and a copy is stored for display inside thepresentation. Images must be less than 50MB in size, cannot exceed 25 megapixels, and must bein either in PNG, JPEG, or GIF format.
The provided URL must be no larger than 2kB.
Parameters
| Name | Type | Description |
|---|---|---|
image | String | The URL to download the image from. |
crop | Boolean | Iftrue, crops the image to fit the existing image's size. Otherwise, the image is scaled and centered. |
Return
Image — ThisImage after the replacement.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
scaleHeight(ratio)
Scales the element's height by the specified ratio. The element's height is the height of itsbounding box when the element has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Parameters
| Name | Type | Description |
|---|---|---|
ratio | Number | The ratio to scale this page element's height by. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
scaleWidth(ratio)
Scales the element's width by the specified ratio. The element's width is the width of itsbounding box when the element has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Parameters
| Name | Type | Description |
|---|---|---|
ratio | Number | The ratio to scale this page element's width by. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
select()
Selects only thePage in the active presentation and removes any previousselection. This is the same as callingselect(replace) withtrue.
A script can only access the selection of the user who is running the script, and only ifthe script isbound to the presentation.
This sets the parentPage of thePage as thecurrent page selection.
constslide=SlidesApp.getActivePresentation().getSlides()[0];constpageElement=slide.getPageElements()[0];// Only select this page element and replace any previous selection.pageElement.select();
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
select(replace)
Selects thePage in the active presentation.
A script can only access the selection of the user who is running the script, and only ifthe script isbound to the presentation.
Passtrue to this method to select only thePage and remove anyprevious selection. This also sets the parentPage of thePage as thecurrent page selection.
Passfalse to select multiplePage objects. ThePageobjects must be in the samePage.
The following conditions must be met while selecting a page element using afalseparameter:
- The parent
Pageof thePageobject must be theElement current page selection. - There should not be multiple
Pageobjects selected.
To make sure that’s the case the preferred approach is to select the parentPagefirst usingPage.selectAsCurrentPage() and then select the page elements in that page.
constslide=SlidesApp.getActivePresentation().getSlides()[0];// First select the slide page, as the current page selection.slide.selectAsCurrentPage();// Then select all the page elements in the selected slide page.constpageElements=slide.getPageElements();for(leti=0;i <pageElements.length;i++){pageElements[i].select(false);}
Parameters
| Name | Type | Description |
|---|---|---|
replace | Boolean | Iftrue, the selection replaces any previous selection; otherwise the selection is added to any previous selection. |
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
sendBackward()
Sends the page element backward on the page by one element.
The page element must not be in a group.
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
sendToBack()
Sends the page element to the back of the page.
The page element must not be in a group.
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setDescription(description)
Sets the page element's alt text description.
The method is not supported forGroup elements.
// Set the first page element's alt text description to "new alt text// description".constpageElement=SlidesApp.getActivePresentation().getSlides()[0].getPageElements()[0];pageElement.setDescription('new alt text description');Logger.log(pageElement.getDescription());
Parameters
| Name | Type | Description |
|---|---|---|
description | String | The string to set the alt text description to. |
Return
Image — This page element.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setHeight(height)
Sets the element's height in points, which is the height of the element's bounding box when theelement has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Parameters
| Name | Type | Description |
|---|---|---|
height | Number | The new height of this page element to set, in points. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setLeft(left)
Sets the element's horizontal position in points, measured from the upper-left corner of thepage when the element has no rotation.
Parameters
| Name | Type | Description |
|---|---|---|
left | Number | The new horizontal position to set, in points. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setLinkSlide(slideIndex)
Sets aLink to the givenSlide using the zero-based index of the slide.
// Set a link to the first slide of the presentation.constslides=SlidesApp.getActivePresentation().getSlides();constshape=slides[1].getShapes()[0];constlink=shape.setLinkSlide(0);
Parameters
| Name | Type | Description |
|---|---|---|
slide | Integer | The zero-based index to the slide. |
Return
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setLinkSlide(slide)
Sets aLink to the givenSlide, the link is set by the given slide ID.
// Set a link to the first slide of the presentation.constslides=SlidesApp.getActivePresentation().getSlides();constshape=slides[1].getShapes()[0];constlink=shape.setLinkSlide(slides[0]);
Parameters
| Name | Type | Description |
|---|---|---|
slide | Slide | TheSlide to be linked. |
Return
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setLinkSlide(slidePosition)
Sets aLink to the givenSlide using the relative position of the slide.
// Set a link to the first slide of the presentation.constslides=SlidesApp.getActivePresentation().getSlides();constshape=slides[1].getShapes()[0];constlink=shape.setLinkSlide(SlidesApp.SlidePosition.FIRST_SLIDE);
Parameters
| Name | Type | Description |
|---|---|---|
slide | Slide | The relativeSlide. |
Return
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setLinkUrl(url)
Sets aLink to the given non-empty URL string.
// Set a link to the URL.constslides=SlidesApp.getActivePresentation().getSlides();constshape=slides[1].getShapes()[0];constlink=shape.setLinkUrl('https://slides.google.com');
Parameters
| Name | Type | Description |
|---|---|---|
url | String | The URL string. |
Return
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setRotation(angle)
Sets the element's clockwise rotation angle around its center in degrees.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Parameters
| Name | Type | Description |
|---|---|---|
angle | Number | The new clockwise rotation angle to set, in degrees. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setTitle(title)
Sets the page element's alt text title.
The method is not supported forGroup elements.
// Set the first page element's alt text title to "new alt text title".constpageElement=SlidesApp.getActivePresentation().getSlides()[0].getPageElements()[0];pageElement.setTitle('new alt text title');Logger.log(pageElement.getTitle());
Parameters
| Name | Type | Description |
|---|---|---|
title | String | The string to set the alt text title to. |
Return
Image — This page element.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setTop(top)
Sets the element's vertical position in points, measured from the upper-left corner of the pagewhen the element has no rotation.
Parameters
| Name | Type | Description |
|---|---|---|
top | Number | The new vertical position to set, in points. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setTransform(transform)
Sets the transform of the page element with the provided transform.
Updating the transform of a group changes the absolute transform of the page elements inthat group, which can change their visual appearance.
Updating the transform of a page element that is in a group only changes the transform ofthat page element; it doesn't affect the transforms of the group or other page elements in thegroup.
For details on how transforms impact the visual appearance of page elements, seeget.
Parameters
| Name | Type | Description |
|---|---|---|
transform | Affine | The transform that is set for this page element. |
Return
Image — This element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
setWidth(width)
Sets the element's width in points, which is the width of the element's bounding box when theelement has no rotation.
This method isn't compatible with all page elements. To learn which page elements aren'tcompatible with this method, refer to thesizing and positioning limitations.
Parameters
| Name | Type | Description |
|---|---|---|
width | Number | The new width of this page element to set, in points. |
Return
Image — This page element, for chaining.
Authorization
Scripts that use this method require authorization with one or more of the followingscopes:
https://www.googleapis.com/auth/presentations.currentonlyhttps://www.googleapis.com/auth/presentations
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-11 UTC.