Class PageBackground

頁面背景

說明網頁背景

方法

方法傳回類型簡短說明
getPictureFill()PictureFill取得此背景的延伸圖片填充內容,如果背景填充類型不是 PageBackgroundType.PICTURE,則會取得 null
getSolidFill()SolidFill取得此背景的純色填充,如果背景填充類型不是 PageBackgroundType.SOLID,則會取得 null
getType()PageBackgroundType取得此頁面背景的類型。
isVisible()Boolean是否顯示背景。
setPictureFill(blobSource)void將指定圖片 Blob 中的圖片設為網頁背景。
setPictureFill(imageUrl)void將提供的網址中的圖片設為網頁背景。
setSolidFill(color)void將填充色彩設為指定的 Color
setSolidFill(color, alpha)void將純色填滿設為指定的 alpha 和 Color
setSolidFill(red, green, blue)void將填充色彩設為指定的 RGB 值。
setSolidFill(red, green, blue, alpha)void將實心填充設為指定的 Alpha 和 RGB 值。
setSolidFill(hexString)void將純色填滿設為指定的十六進位顏色字串。
setSolidFill(hexString, alpha)void將純色填滿設為指定的 Alpha 和十六進位顏色字串。
setSolidFill(color)void將填充色彩設為指定的 ThemeColorType
setSolidFill(color, alpha)void將純色填滿設為指定的 alpha 和 ThemeColorType
setTransparent()void將背景設為透明。

內容詳盡的說明文件

getPictureFill()

取得此背景的延伸圖片填充內容,如果背景填充類型不是 PageBackgroundType.PICTURE,則會取得 null

回攻員

PictureFill

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getSolidFill()

取得此背景的純色填充,如果背景填充類型不是 PageBackgroundType.SOLID,則會取得 null

回攻員

SolidFill

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getType()

取得此頁面背景的類型。

回攻員

PageBackgroundType

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

isVisible()

是否顯示背景。

回攻員

Boolean

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setPictureFill(blobSource)

將指定圖片 Blob 中的圖片設為網頁背景。系統會將圖片拉長,使其符合頁面尺寸。

插入圖片時,系統會從 BlobSource 擷取圖片一次,並儲存副本供簡報內顯示。圖片大小不得超過 50 MB,解析度不得超過 2500 萬像素,且格式必須為 PNG、JPEG 或 GIF。

參數

名稱類型說明
blobSourceBlobSource圖片資料。

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setPictureFill(imageUrl)

將提供的網址中的圖片設為網頁背景。圖片會延展至符合頁面尺寸。

插入圖片時,系統會從網址擷取圖片一次,並儲存副本供簡報內顯示。圖片大小不得超過 50 MB,且不得超過 2,500 萬像素,格式必須為 PNG、JPEG 或 GIF。

提供的網址必須可供所有人存取,且大小不得超過 2 KB。網址本身會與圖片一併儲存,並透過 PictureFill.getSourceUrl() 公開。

參數

名稱類型說明
imageUrlString可下載圖片的網址。

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(color)

將填充色彩設為指定的 Color

參數

名稱類型說明
colorColor

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(color, alpha)

將純色填滿設為指定的 alpha 和 Color

參數

名稱類型說明
colorColor
alphaNumber

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(red, green, blue)

將填充色彩設為指定的 RGB 值。

參數

名稱類型說明
redInteger
greenInteger
blueInteger

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(red, green, blue, alpha)

將實心填充設為指定的 Alpha 和 RGB 值。

參數

名稱類型說明
redInteger
greenInteger
blueInteger
alphaNumber

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(hexString)

將純色填滿設為指定的 16 進制顏色字串。

十六進位字串的格式必須為「#RRGGBB」。舉例來說,粉紅色會以 '#FFC0CB' 表示。

參數

名稱類型說明
hexStringString

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(hexString, alpha)

將純色填滿設為指定的 Alpha 和十六進位顏色字串。

十六進位字串的格式必須為「#RRGGBB」。舉例來說,粉紅色會以 '#FFC0CB' 表示。

參數

名稱類型說明
hexStringString
alphaNumber

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(color)

將填充色彩設為指定的 ThemeColorType

參數

名稱類型說明
colorThemeColorType

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setSolidFill(color, alpha)

將純色填滿設為指定的 alpha 和 ThemeColorType

參數

名稱類型說明
colorThemeColorType
alphaNumber

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

setTransparent()

將背景設為透明。

授權

使用這個方法的腳本需要具備下列一或多個範圍的授權:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations