Boolean AutoPull { get; set; }
Set the property to True, for the component to call Pull method each time a new buffer is requested.
Returns: Boolean
Remarks:
You have to have a TSignal object assigned to the Input property for this to work. Once a new buffer becomes available the component will call Input.Pull. To record to file you would assign:
SignalIn.Input = SignalWrite; SignalWrite.Input = SignalIn;