Point

Description

The Point type holds details about a state in the graphical workflow. The Point type parameters are listed below.

Parameters

Name Type Description
x integer X-coordinate
y integer Y-coordinate
extendedData ExtendedData Placeholder for future arguments.

Usage

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

XML

The following XML snippet shows the Point type in the <ae:center> 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>