CreatePresetColor
Create a color selecting it from one of the available color presets.
Parameters:
Name |
Type |
Description |
sPresetColor |
PresetColor
|
A preset selected from the list of the available color preset names. |
Returns:
- Type
-
ApiPresetColor
Example
Copy code
builder.CreateFile("pptx");
oPresentation = Api.GetPresentation();
oSlide = oPresentation.GetSlideByIndex(0);
oGs1 = Api.CreateGradientStop(Api.CreatePresetColor("lightYellow"), 0);
oGs2 = Api.CreateGradientStop(Api.CreateRGBColor(255, 164, 101), 100000);
oFill = Api.CreateRadialGradientFill([oGs1, oGs2]);
oSlide.SetBackground(oFill);
builder.SaveFile("pptx", "CreatePresetColor.pptx");
builder.CloseFile();
Resulting document