次の方法で共有


PowerPoint.SlideBackgroundGradientFillOptions interface

PowerPoint.SlideBackground グラデーションの塗りつぶしを設定するために使用できるオプションを表します。

注釈

[ API set: PowerPointApi 1.10 ]

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/powerpoint/slide-management/get-set-background-fill.yaml

// Sets the background of the first selected slide to a linear gradient fill.
await PowerPoint.run(async (context) => {
  const slide: PowerPoint.Slide = context.presentation.getSelectedSlides().getItemAt(0);
  slide.background.fill.setGradientFill({
    type: PowerPoint.SlideBackgroundGradientFillType.linear,
  } as PowerPoint.SlideBackgroundGradientFillOptions);
  await context.sync();

  console.log("Background set to linear gradient fill.");
});

プロパティ

type

指定した場合は、グラデーション塗りつぶしの種類を指定します。

プロパティの詳細

type

指定した場合は、グラデーション塗りつぶしの種類を指定します。

type?: PowerPoint.SlideBackgroundGradientFillType | "Unsupported" | "Linear" | "Radial" | "Rectangular" | "Path" | "ShadeFromTitle";

プロパティ値

PowerPoint.SlideBackgroundGradientFillType | "Unsupported" | "Linear" | "Radial" | "Rectangular" | "Path" | "ShadeFromTitle"

注釈

[ API set: PowerPointApi 1.10 ]