Size

Description

The Size type holds size information about for objects in the graphical workflow. The Size type parameters are listed below.

Parameters

Name Type Description
width integer The width of the object.
height integer The height of the object.
extendedData ExtendedData Placeholder for future arguments.

Usage

The Size type is used to define the size of a design object in the graphical workflow. For details on the graphical workflow, refer to Workflow.

XML

The following XML snippet shows the Size type in the <ae:size> element of the GetWorkflows response.

<ae:state>
   <ae:id xsi:type="ae:StateIdentifier">
       <ae:displayName>None</ae:displayName>
       <ae:id>0</ae:id>
       <ae:uuid/>
       <ae:internalName/>
       <ae:isClosed>false</ae:isClosed>
   </ae:id>
   <ae:center>
       <ae:x>63</ae:x>
       <ae:y>0</ae:y>
   </ae:center>
   <ae:size>
       <ae:width>63</ae:width>
       <ae:height>63</ae:height>
   </ae:size>
   <ae:radius>0</ae:radius>
</ae:state>