Skip to main content

HexColor

Creates a color from a HEX string.

Syntax

expression.HexColor(hexString);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
hexStringRequiredstringNo description provided.

Returns

ApiColor

Example

This example shows how to create a hex color and use it as a shape fill.

const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
slide.RemoveAllObjects();

const color = Api.HexColor('#DECADE');
const fill = Api.CreateSolidFill(color);
const stroke = Api.CreateStroke(36000, Api.CreateSolidFill(Api.RGB(0, 0, 0)));
const shape = Api.CreateShape("rect", 300 * 36000, 130 * 36000, fill, stroke);
shape.SetPosition(608400, 1267200);
slide.AddObject(shape);