Write/Read
 

DimensionRepeatCount Property


Description

Set and read the repeat count for the specified dimension order in the multi-dimensional sweep.

 VB Syntax

md.DimensionRepeatCount (dim) = value

Variable

(Type) - Description

md

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

dim

(long) Dimension order. Choose an integer value of 1 or higher.

value

(long) Repeat count. Choose an integer value of 1 or higher.

Return Type

long

Default

1

Examples

md.DimensionRepeatCount (2) = 1   'Write

value = md.DimensionRepeatCount(4) 'Read

C++ Syntax

HRESULT put_ DimensionRepeatCount (long dim, long value);

HRESULT get_ DimensionRepeatCount (long dim, long* value);

Interface

IMultiDimensionalSweep