Write/Read
 

SourcePortPowerState Property


Description

Set and read the source power domain’s ON/OFF state in the multi-dimensional sweep.

 VB Syntax

md.SourcePortPowerState(port) = value

Variable

(Type) - Description

md

A MultiDimensionalSweep (object) which belongs to a SA channel.

port

(long) Source port number for which to set the source power state.

value

Boolean) Choose from:

0 - OFF -Disable the specified source power domain in multi-dimensional sweep.

1 - ON - Enable the specified source power domain in multi-dimensional sweep.

Return Type

Boolean

Default

0

Examples

md.SourcePortPowerState(0) = OFF   'Write

value = md.SourcePortPowerState(1) 'Read

C++ Syntax

HRESULT put_SourcePortPowerState(long port, VARIANT_BOOL value);

HRESULT get_SourcePortPowerState(long port, VARIANT_BOOL* value);

Interface

IMultiDimensionalSweep