Write/Read
 

SourcePortFixedFrequency Property


Description

Set and read the fixed frequency value for a specific port.

 VB Syntax

chan.SourcePortFixedFrequency(port) = value

Variable

(Type) - Description

chan

A SA Channel (object)

port

(long) Source port number for which to set the fixed frequency value.

value

(double) Fixed frequency value.

Return Type

double

Default

1

Examples

chan.SourcePortFixedFrequency(1) = 1e9    'Write

value = chan.SourcePortFixedFrequency(1) 'Read

C++ Syntax

HRESULT put_SourcePortFixedFrequency(long port, double value);

HRESULT get_SourcePortFixedFrequency(long port, double* value);

Interface

IChannel26