API Console.SetMemMode: Difference between revisions
Appearance
XML import |
XML import |
||
| Line 3: | Line 3: | ||
<div style="width:25%; float:right" class="toc"> | <div style="width:25%; float:right" class="toc"> | ||
===Class hierarchy===[[API Console|Console]] | ====Class hierarchy==== | ||
[[API Console|Console]] | |||
:[[API Console|SetMemMode]] | :[[API Console|SetMemMode]] | ||
</div> | </div> | ||
| Line 9: | Line 10: | ||
==Parameters== | ==Parameters== | ||
[[Variable types|HANDLE]] ''ConsoleHandle'' | |||
:A valid console windows handle | :A valid console windows handle | ||
[[Variable types|BOOL]] ''Enable'' | |||
:True to show address and bytes, false for plain text | :True to show address and bytes, false for plain text | ||
| Line 19: | Line 20: | ||
==Detailed description== | ==Detailed description== | ||
''No additional information'' | ''<span style="color:red;">No additional information</span>'' | ||
==Examples== | ==Examples== | ||
===Calling in a calculation=== | ===Calling in a calculation=== | ||
* Add to a calculation icon: <pre class="brush:[cpp]">::Console.SetMemMode(consolehandle, true)</pre> | * Add to a calculation icon: <pre class="brush:[cpp]">::Console.SetMemMode(consolehandle, true)</pre> | ||
''<span style="color:red;">No additional information</span>'' | |||
Revision as of 22:10, 11 May 2013
<sidebar>API contents</sidebar> Sets whether to show address and bytes for the console
Parameters
HANDLE ConsoleHandle
- A valid console windows handle
BOOL Enable
- True to show address and bytes, false for plain text
Return value
This call does not return a value
Detailed description
No additional information
Examples
Calling in a calculation
- Add to a calculation icon:
::Console.SetMemMode(consolehandle, true)
No additional information