Write/Read |
Description |
Set and read the start frequency value for a specific port. |
VB Syntax |
chan.SourcePortStartFrequency(port) = value |
Variable |
(Type) - Description |
chan |
A SA Channel (object) |
port |
(long) Source port number for which to set the start frequency value. |
value |
(double) Start frequency value. |
Return Type |
double |
Default |
1 |
Examples |
chan.SourcePortStartFrequency(1) = 1e9 'Write |
value = chan.SourcePortStartFrequency(1) 'Read |
|
C++ Syntax |
HRESULT put_SourcePortStartFrequency(long port, double value); HRESULT get_SourcePortStartFrequency(long port, double* value); |
Interface |
IChannel27 |