Write/Read |
About Receiver Leveling |
Description |
Sets and reads the state of Receiver Leveling for a specific source port. |
VB Syntax |
RxLevel.State(srcPort) = value |
Variable |
(Type) - Description |
RxLevel |
A ReceiverLeveling Object |
value |
(Boolean) Choose from: True - Receiver leveling ON False - Receiver leveling OFF |
srcPort |
(Long Integer) Source port for which to set the state of 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 |
Return Type |
Variant Boolean |
Default |
False |
Examples |
rxLevel.State (1) = True ' Write |
value = rxLevel.State 2' Read |
|
C++ Syntax |
HRESULT get_State(long port, VARIANT_BOOL* pLevelingState); HRESULT put_State(long port, VARIANT_BOOL LevelingState); |
Interface |
IReceiverLevelingConfiguration |