_DMcMeasuresEvents_MeasuresGoneStaleEventHandler Delegate
|
|
An event fired when one or more measurements in the collection goes "stale"
Namespace:
MediaCy.IQL.Features
Assembly:
MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
SyntaxPublic Delegate Sub _DMcMeasuresEvents_MeasuresGoneStaleEventHandler (
Measures As McMeasures,
MeasureObjectsArray As Object,
DependencyFlags As mcMeasurementDependencyFlags
)
Parameters
- Measures
- Type: MediaCy.IQL.FeaturesMcMeasures
The McMeasures object firing the event. - MeasureObjectsArray
- Type: SystemObject
An array of the McMeasure objects that have just gone
stale. This array may be of length only one; use the VB UBound method
to find the largest index. - DependencyFlags
- Type: MediaCy.IQL.FeaturesmcMeasurementDependencyFlags
Flags, or'ed together, indicating which dependency or
dependencies changed so as to cause the measurement(s) to go stale.
RemarksSent whenever one or more measurements in the collection goes
"stale". A measurement is "stale" when its McMeasure.Value property needs to
be recomputed; for each of the objects in teh MeasureObjectsArray the
McMeasure.IsValueStale property will have gone True just before this event
is fired.
See Also