Write/Read
 

DimensionPointCount Property


Description

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

 VB Syntax

md.DimensionPointCount (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) Point count. Choose an integer value of 1 or higher.

Return Type

long

Default

1

Examples

md.DimensionPointCount (2) = 3   'Write

value = md.DimensionPointCount(4) 'Read

C++ Syntax

HRESULT put_ DimensionPointCount (long dim, long value);

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

Interface

IMultiDimensionalSweep