Click or drag to resize

IMcImageSetStringDataChannelAddData Method

Adds a data sample to this data channel.

Namespace:  MediaCy.IQL.Sets
Assembly:  MediaCy.IQL.Sets (in MediaCy.IQL.Sets.dll) Version: 10.0.6912.0
Syntax
VB
Sub AddData ( 
	DataSample As String,
	Time As DateTime
)

Parameters

DataSample
Type: SystemString
The value of the provided data sample
Time
Type: SystemDateTime
The time point of the provided data sample
Remarks
This method adds the provided sample to this data channel.
Note Note
Adding data to a data channel may result in a new StartTime (if the time point is prior to the current StartTime) or EndTime (if the time point is after the current EndTime), either of which will change the Duration. Note also that for performance-critical applications, data should always be added in order (each new sample has a Time >= the last time), and it may also be preferable to reserve the number of samples to be collected.
See Also