Event SLGenericRealValue.TSLGenericRealValue.OnProcessData
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLGenericRealValue
Contents |
Syntax
Delphi:
property OnProcessData : TSLProcessRealValueNotify read FOnProcessData write SetOnProcessData;
C++ Builder:
__property TSLProcessRealValueNotify OnProcessData = { read=FOnProcessData, write=SetOnProcessData };
Summary
Occurs when a data buffer is received.
Description
Use the OnProcessData event handler to write code that
responds when a value is received.
Write your custom code to process the video data inside the event. The incoming value will be contained inside the InValue. You can assign the processed value to the OutValue.
You can prevent the output value to be sent to the next component by setting SendOutputData to False.
Usually occurs when a new data is generated during data capturing or data playback.