Write/Read |
About Receiver Leveling |
Description |
Sets and returns the state of a separate IFBW setting for leveling sweeps. ON allows a higher (faster) IFBW than the measurement sweep. It also causes leveling sweeps to be noisier. |
VB Syntax |
RxLevel.FastMode(srcPort) = value |
Variable |
(Type) - Description |
RxLevel |
A ReceiverLeveling Object |
srcPort |
(Long Integer) Source port for which to set Fast Mode for Receiver Leveling. Note: If the source port is defined by a string name, such as an external source, a balanced port, or one of the Source 2 outputs on the 2-port 2-source PNA-X model, then use chan.getPortNumber to translate the string into a port number. To learn more see Remotely Specifying a Source Port |
value |
(Boolean) Separate IFBW setting state. Choose from: True - Use separate IFBW setting. Specify IFBW using LevelingIFBW. False - Use same IFBW as the measurement sweep. Specify IFBW using IF Bandwidth. |
Return Type |
Variant Boolean |
Default |
True |
Examples |
rxLevel.FastMode (1) = True ' Write |
value = rxLevel.FastMode 2' Read |
|
C++ Syntax |
HRESULT get_FastMode(long port, VARIANT_BOOL* pVal); HRESULT put_FastMode(long port, VARIANT_BOOL newVal); |
Interface |
IReceiverLevelingConfiguration |