API Mouse.GetClickSide: Difference between revisions
Appearance
XML import of API auto-gen |
XML import |
||
| Line 2: | Line 2: | ||
Gets the side of the component clicked on, 0 to 7 | Gets the side of the component clicked on, 0 to 7 | ||
<div style="width:25%; float:right" class="toc"> | |||
===Class hierarchy=== | |||
:Mouse | |||
::GetClickSide | |||
</div> | |||
__TOC__ | |||
==Parameters== | |||
''This function has no parameters'' | ''This function has no parameters'' | ||
==Return value== | |||
[[Variable types|BYTE]] | [[Variable types|BYTE]] | ||
Returns the side of the component clicked on, 0 to 7 | Returns the side of the component clicked on, 0 to 7 | ||
==Detailed description== | |||
''No additional information'' | ''No additional information'' | ||
==Examples== | |||
===Calling in a calculation=== | |||
* Declare a variable 'result' of type BYTE | * Declare a variable 'result' of type BYTE | ||
* Add to a calculation icon: <pre class="brush:[ | * Add to a calculation icon: <pre class="brush:[cpp]">result = ::Mouse.GetClickSide()</pre> | ||
Revision as of 16:43, 11 May 2013
<sidebar>API contents</sidebar> Gets the side of the component clicked on, 0 to 7
Class hierarchy
- Mouse
- GetClickSide
Parameters
This function has no parameters
Return value
Returns the side of the component clicked on, 0 to 7
Detailed description
No additional information
Examples
Calling in a calculation
- Declare a variable 'result' of type BYTE
- Add to a calculation icon:
result = ::Mouse.GetClickSide()