Freigeben über


PowerPoint.SlideBackgroundGradientFillOptions interface

Stellt die verfügbaren Optionen zum Festlegen einer PowerPoint.SlideBackground-Farbverlaufsfüllung dar.

Hinweise

[ API-Satz: PowerPointApi 1.10 ]

Beispiele

// 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.");
});

Eigenschaften

type

Gibt den Typ der Farbverlaufsfüllung an, sofern angegeben.

Details zur Eigenschaft

type

Gibt den Typ der Farbverlaufsfüllung an, sofern angegeben.

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

Eigenschaftswert

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

Hinweise

[ API-Satz: PowerPointApi 1.10 ]