style.getProperties(options?)

Retrieves the CSS properties of the specified Style Object. See the style properties list for an index of CSS properties that can be set on a Style.

Syntax

1style.getProperties(options?: BreakpointAndPseudo): Promise<PropertyMap>

Parameters

  • options : BreakpointAndPseudo {breakpoint: BreakpointId, pseudo: PseudoStateKey?}- An optional parameter to filter properties based on a breakpoint and/or pseudo-class, also known as a pseudo-state.

    • BreakpointId: "xxl" | "xl" | "large" | "main" | "medium" | "small" | "tiny" - An optional identifier of the breakpoint size, also known as media query, in the Designer.
    • PseudoStateKey: "noPseudo" | "nth-child(odd)" | "nth-child(even)" | "first-child" | "last-child" | "hover" | "active" | "pressed" | "visited" | "focus" | "focus-visible" | "focus-within" | "placeholder" | "empty" | "before" | "after" - An optional identifier for the pseudo-classes of an element that can be targeted and styled using CSS.

Returns

Promise<PropertyMap>

A Promise that resolves to a PropertyMap object. A dictionary of style properties and their values.

Example

1// Get selected element
2const element = await webflow.getSelectedElement()
3
4if (element?.styles) {
5
6 // Get Element Styles
7 const styles = await element.getStyles()
8
9 // Initialize an empty object to store all properties
10 const allProperties: { [key: string]: any } = {};
11
12 for (let style of styles) {
13 // Use string type for styleName
14 const styleName: string = await style.getName();
15 const breakpoint : BreakpointAndPseudo = {breakpoint: 'xxl'}
16 const properties = await style.getProperties(breakpoint);
17 allProperties[styleName] = properties;
18 }
19
20 console.log(allProperties);
21
22}

Designer Ability

Checks for authorization only

Designer AbilityLocaleBranchWorkflowSitemode
canAccessCanvasAnyAnyAnyAn