Write/Read
About Number of Points

NumberOfPoints Property


Description

Sets or returns the Number of Points of the channel.

Sets or returns the Number of Points of the segment.

See Also

 VB Syntax

object.NumberOfPoints = value

Variable

(Type) - Description

object

Channel (object)

or

CalSet (object) - Read-only property

value

(long) - Number of Points.

For channel, choose any number from 1 to the PNA max number of points.

For segment, the total number of points in all segments cannot exceed the PNA maximum. A segment can have as few as 1 point.

Return Type

Long Integer

Default

201 for channel

21 for segment

Examples

chan.NumberOfPoints = 201 'sets the number of points for all measurements in the channel. -Write

numofpts = chan.NumberOfPoints 'Read

C++ Syntax

HRESULT get_NumberOfPoints(long *pVal)
HRESULT put_NumberOfPoints(long newVal)

Interface

IChannel
ISegment

|CalSet3