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