CreatorSE.ProductArea Data Type

A printable area on a product, defined by its dimensions, position, and available print technologies.

Properties
Name Type Description
id number Unique numeric identifier for the ProductArea.
name string The name identifier for the ProductArea.
assignedView CreatorSE.ProductAssignedView
realSize CreatorSE.Dimension The real size information about products printable area.
CreatorSE.ProductArea (JSON)
{
  "creatorse_productArea" : {
    "id" : 12345,
    "name" : "...",
    "assignedView" : {
      "id" : 12345,
      "view" : {
        "id" : 12345,
        "position" : "FRONT"
      }
    },
    "realSize" : {
      "width" : 12345.0,
      "height" : 12345.0
    }
  }
}
CreatorSE.ProductArea Data Type

A printable area on a product, defined by its dimensions, position, and available print technologies.

Properties
Name Type Description
assignedView CreatorSE.ProductAssignedView  
id int Unique numeric identifier for the ProductArea.
name string The name identifier for the ProductArea.
realSize CreatorSE.Dimension The real size information about products printable area.
CreatorSE.ProductArea (XML)
<creatorse_productArea>
  <id>...</id>
  <name>...</name>
  <assignedView>
    <id>...</id>
    <view>
      <id>...</id>
      <position>FRONT</position>
    </view>
  </assignedView>
  <realSize>
    <width>...</width>
    <height>...</height>
  </realSize>
</creatorse_productArea>