[This is preliminary documentation and is subject to change.]

Application command

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public enum ApplicationComands
Visual Basic
Public Enumeration ApplicationComands
Visual C++
public enum class ApplicationComands
F#
type ApplicationComands
JScript
public enum ApplicationComands

Members

Member nameValueDescription
BassBoost20Toggle the bass boost on and off.
BassDown19Decrease the bass.
BassUp21 Increase the bass.
BrowserBack1 Navigate backward.
BrowserFavorites6 Open favorites.
BrowserForward2 Navigate forward.
BrowserHome7 Navigate home.
BrowserRefresh3 Refresh page.
BrowserSearch5Open search.
BrowserStop4Stop download.
LaunchApp117 Start App1.
LaunchApp218 Start App2.
LaunchMail15 Open mail.
LaunchMediaSelect16 Go to Media Select mode.
MediaNextTrack11Go to next track.
MediaPlayPause14 Play or pause playback.
MediaPreviousTrack12Go to previous track.
MediaStop13 Stop playback.
TrebleDown22 Decrease the treble.
TrebleUp23 Increase the treble.
VolumeDown9 Lower the volume.
Mute8 Mute the volume.
VolumeUp10 Raise the volume.
MicrophoneMute24Windows XP: Mute the microphone.
MicrophoneVolumeDown25Windows XP: Decrease microphone volume.
MicrophoneVolumeUp26 Windows XP: Increase microphone volume.
Close31Windows XP: Close the window (not the application).
Copy36Windows XP: Copy the selection.
CorrectionList45Windows XP: Brings up the correction list when a word is incorrectly identified during speech input.
Cut37Windows XP: Cut the selection.
DictateOrCommandControlToggle43Windows XP: Toggles between two modes of speech input: dictation and command/control (giving commands to an application or accessing menus).
Find28Windows XP: Open the Find dialog.
ForwardMail40Windows XP: Forward a mail message.
Help27Windows XP: Open the Help dialog.
ChannelDown52Windows XP SP1: Decrement the channel value, for example, for a TV or radio tuner.
ChannelUp51Windows XP SP1: Increment the channel value, for example, for a TV or radio tuner.
FastForward49Windows XP SP1: Increase the speed of stream playback. This can be implemented in many ways, for example, using a fixed speed or toggling through a series of increasing speeds.
MediaPause47Windows XP SP1: Pause. If already paused, take no further action. This is a direct PAUSE command that has no state. If there are discrete Play and Pause buttons, applications should take action on this command as well as APPCOMMAND_MEDIA_PLAY_PAUSE.
MediaPlay46Windows XP SP1: Begin playing at the current position. If already paused, it will resume. This is a direct PLAY command that has no state. If there are discrete Play and Pause buttons, applications should take action on this command as well as APPCOMMAND_MEDIA_PLAY_PAUSE.
MediaRecord48Windows XP SP1: Begin recording the current stream.
MediaRewind50Windows XP SP1: Go backward in a stream at a higher rate of speed. This can be implemented in many ways, for example, using a fixed speed or toggling through a series of increasing speeds.
MicrophoneOnOffToggle44Windows XP: Toggle the microphone.
New29Windows XP: Create a new window.
Open30Windows XP: Open a window.
Pase38Windows XP: Paste
Print33Windows XP: Print current document.
Redo35Windows XP: Redo last action.
MailReply39Windows XP: Reply to a mail message.
Save32Windows XP: Save current document.
SendMail41Windows XP: Send a mail message.
SpellCheck42Windows XP: Initiate a spell check.
Undo34Windows XP: Undo last action.
Delete53Windows Vista: Delete
Flip3D54Windows Vista: Flip 3D (as WinKey+Tab)
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

Remarks

These commands are sent to applications as windows messages.

See Also