Write/Read
About LFE

LowFrequencyExtension Property


Description

Enables/disables the low frequency extension (LFE). Learn more.

 VB Syntax

chan.LowFrequencyExtension = value

Variable

(Type) - Description

value

(boolean) - Choose either:

False - LFE is disabled.

True  - LFE is enabled.

chan

Channel (object)

Return Type

Boolean

Default

False

Examples

chan.LowFrequencyExtension = True 'Write

lfestate = chan.LowFrequencyExtension 'Read

C++ Syntax

HRESULT get_LowFrequencyExtension(VARIANT_BOOL* lfestate);

HRESULT put_LowFrequencyExtension(VARIANT_BOOL lfestate);

Interface

IChannel26