CreatorSE.DesignElement Data Type

Abstract base type for all elements that can be placed within a design composition. Concrete subtypes include motive elements, DDF elements, and decoration elements.

Abstract Type
Yes
Subtypes
CreatorSE.DesignElementDecoration, CreatorSE.DesignElementDdf, CreatorSE.DesignElementMotive
Properties
Name Type Description
position CreatorSE.Position Position and size of this element within the product print area. Coordinates are expressed in millimetres or as a percentage of the area dimensions.
printTechnology CreatorSE.PrintTechnology The print technology applied to this element (e.g. DTG, screen print). References the print technology configured on the product area.
layers array of CreatorSE.DesignElementLayer Optional layer overrides for motives that contain named SVG layers. Each entry targets one layer by name and can carry a new text value or rgbColor. Omit or leave empty when the motive has no dynamic layers.
CreatorSE.DesignElement (JSON)
Abstract type. Example may be incomplete.
{
  "creatorse_designElement" : {
    "position" : {
      "horizontalCenter" : "...",
      "verticalCenter" : "...",
      "left" : "10%",
      "right" : "10%",
      "top" : "10%",
      "bottom" : "..."
    },
    "printTechnology" : {
      "id" : 12345,
      "name" : "DTG"
    },
    "layers" : {
      "creatorse_designElementLayer" : [ {
        "name" : "...",
        "text" : "...",
        "rgbColor" : "..."
      }, {
        "name" : "...",
        "text" : "...",
        "rgbColor" : "..."
      } ]
    }
  }
}
CreatorSE.DesignElement Data Type

Abstract base type for all elements that can be placed within a design composition. Concrete subtypes include motive elements, DDF elements, and decoration elements.

Abstract Type
Yes
Subtypes
CreatorSE.DesignElementDdf, CreatorSE.DesignElementDecoration, CreatorSE.DesignElementMotive
Properties
Name Type Description
creatorse_designElementLayer list of CreatorSE.DesignElementLayer Optional layer overrides for motives that contain named SVG layers. Each entry targets one layer by name and can carry a new text value or rgbColor. Omit or leave empty when the motive has no dynamic layers.
position CreatorSE.Position Position and size of this element within the product print area. Coordinates are expressed in millimetres or as a percentage of the area dimensions.
printTechnology CreatorSE.PrintTechnology The print technology applied to this element (e.g. DTG, screen print). References the print technology configured on the product area.
CreatorSE.DesignElement (XML)
Abstract type. Example may be incomplete.
<creatorse_designElement>
  <position>
    <horizontalCenter>...</horizontalCenter>
    <verticalCenter>...</verticalCenter>
    <left>10%</left>
    <right>10%</right>
    <top>10%</top>
    <bottom>...</bottom>
  </position>
  <printTechnology>
    <id>...</id>
    <name>DTG</name>
  </printTechnology>
  <layers>
    <creatorse_designElementLayer>
      <name>...</name>
      <text>...</text>
      <rgbColor>...</rgbColor>
    </creatorse_designElementLayer>
  </layers>
</creatorse_designElement>