Property ALCommonPlayer.TALAudioPlayerSegment.StopSample
From Mitov Wiki Doc
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: TALAudioPlayerSegment
Contents |
Syntax
Delphi:
property StopSample : Int64 read FStopSample write SetStopSample default 100;
C++ Builder:
__property __int64 StopSample = { read=FStopSample, write=SetStopSample, default=100 };
Summary
Ending sample for the segment.
Description
Use this property to specify the ending sample for the
segment to be played.
Delphi example:
ALWavePlayer1.PlaySegment.StopSample := 4000;
C++ Builder example:
ALWavePlayer1->PlaySegment->StopSample = 4000;
Visual C++(MFC/Win32) example:
ALWavePlayer1.PlaySegment.StopSample = 4000;
C# Example:
wavePlayer1.PlaySegment.StopSample = 4000;