IMcImageSetVariantDataChannelAddData 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
SyntaxSub AddData (
DataSample As Object,
Time As DateTime
)
Parameters
- DataSample
- Type: SystemObject
The value of the provided data sample - Time
- Type: SystemDateTime
The time point of the provided data sample
RemarksThis method adds the provided sample to this data channel.
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