API Panel.Position.SetCoords: Difference between revisions
Appearance
No edit summary |
XML import of updated API docs |
||
| Line 1: | Line 1: | ||
<sidebar>API contents</sidebar> | <sidebar>API contents</sidebar> | ||
Sets an objects coordinates based on a position | Sets an objects coordinates based on a position | ||
| Line 19: | Line 21: | ||
==Return value== | ==Return value== | ||
[[Variable Types|BOOL]] | |||
Returns true if the operation is a success, else false | |||
| Line 31: | Line 35: | ||
==Examples== | ==Examples== | ||
===Calling in a calculation=== | ===Calling in a calculation=== | ||
* Add to a calculation icon: <pre class="brush:[cpp]">::Panel.Position.SetCoords(dest, source)</pre> | * Declare a variable 'result' of type BOOL | ||
* Add to a calculation icon: <pre class="brush:[cpp]">result = ::Panel.Position.SetCoords(dest, source)</pre> | |||
''<span style="color:red;">No additional examples</span>'' | |||
Revision as of 09:58, 17 June 2013
<sidebar>API contents</sidebar>
Sets an objects coordinates based on a position
Parameters
HANDLE Dest
- The position or component to update
HANDLE Source
- The position or component to read from
Return value
Returns true if the operation is a success, else false
Detailed description
This is equivalent to the call to Set, except that the scale and rotation of the position are omitted. These may be set with SetScale and SetRotation.
This call is useful for building up a position from multiple sources.
Examples
Calling in a calculation
- Declare a variable 'result' of type BOOL
- Add to a calculation icon:
result = ::Panel.Position.SetCoords(dest, source)
No additional examples