Read-only
About FIFO

Data Property


Description

Reads the next specified number of data points from the FIFO buffer. The data is returned in 32 bit real/imaginary pair. Data is cleared as it is read.

Note: This method is the slowest way to transfer data using COM. However, it is supported by all COM client programming languages. For better performance, try using DataInCompactForm.

 VB Syntax

array = fifo.Data (count)

Variable

(Type) - Description

array

(Variant) Variable to store the returned data.

fifo

A FIFO Object

count

(Long Integer) Number of data points to read.

Return Type

Variant array. Each VARIANT is typed as a 4-byte floating point number.

Default

Not Applicable

Examples

value = fifo.Data(500) 'Read

C++ Syntax

HRESULT get_Data(long count,VARIANT * data);

Interface

IFIFO