Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Responses → Size
The Size type holds size information about for objects in the graphical workflow. The Size type parameters are listed below.
| Name | Type | Description | 
|---|---|---|
| width | integer | The width of the object. | 
| height | integer | The height of the object. | 
| extendedData | ExtendedData | Placeholder for future arguments. | 
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.
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>
 
    Copyright © 2007–2016 Serena Software, Inc. All rights reserved.