type

Gets the element’s type.

Possible values include:

  • “text”
  • “image”

Syntax

Copy
readonly type: string

Example

Copy
import { editor, elements } from "@wix/editor"; import { createClient } from "@wix/sdk"; const client = createClient({ host: editor.host(), modules: { elements }, }); async function getSelectedElementProp(propName) { const [myElement] = await client.elements.getSelection(); const elementType = myElement.type; }
Did this help?