Ocv.SprintPoint()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Curve classes > class OCV >

Ocv.SprintPoint()

Description

Used in output of data from an Ocv object.

 

A data point from the object is printed to an ASCII string. This string can, in turn, be printed to the active output file.

 

The format of the data string is:

 

PointNumber <tab> Time <tab> Vf <tab> Vm <tab> Over

 

You can use this function along with the Printl() function to output point i to the output file as follows:

 

Printl("\t",Ocv.SprintPoint(i))

 

Type

INSTANCE FUNCTION

 

Usage

Result = Ocv.SprintPoint(PointNumber)

 

PointNumber

INDEX

The point to be printed. PointNumber is zero-based. If the requested point is not yet taken, a parameter error is issued.

Time

REAL

Time from start of experiment in seconds.

Vf

REAL

Filtered voltage.

Vm

REAL

Unfiltered voltage.

Over

STRING

Hexadecimal number representing overload status.

Result

STRING

The output string.