SoundGetWaveVolume

Retrieves the wave output volume of a sound device.

SoundGetWaveVolume, OutputVar , DeviceNumber

매개변수

OutputVar

The name of the output variable in which to store the retrieved volume level, which is a floating point number between 0 and 100 inclusive. 이 변수는 볼륨을 열람하는 데 문제가 있었으면 비워집니다. 부동 소수점 수의 형식은, 예를 들어 그의 소수점 자리는, SetFormat에 의하여 결정됩니다.

DeviceNumber

이 매개변수가 생략되면, 기본값은 1입니다 (첫 번째 사운드 장치), 이것이 보통 녹음과 연주에 사용되는 시스템의 기본 장치입니다. 1보다 큰 숫자를 지정하면 다른 사운드 장치를 처리할 수 있습니다.

에러 처리

[v1.1.04+]: 이 명령어는 실패하면 예외를 던질 수 있습니다. 더 자세한 정보는 실행시간 에러를 참조하십시오.

ErrorLevel은 문제가 있으면 1, 그렇지 않으면 0이 설정됩니다.

논평

현재 웨이브 출력 볼륨 레벨은 SoundSetWaveVolume를 통하여 설정할 수 있습니다. Master Volume, Synth, Microphone, Mute, Treble, 그리고 Bass 같은 설정들은 SoundSetSoundGet을 사용하여 설정하고열람할 수 있습니다.

[v1.1.10+]: On Windows Vista and later, this command is equivalent to SoundGet with ComponentType set to Wave and ControlType set to Volume.

SoundSetWaveVolume, SoundSet, SoundGet, SoundPlay

예제

Retrieves and reports the current wave output volume.

SoundGetWaveVolume, OutputVar
MsgBox, 현재 웨이브 출력 볼륨 레벨은 %OutputVar%`%입니다.