Property ALCommonPlayer.TALAudioPlayerSegment.StartSample
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 StartSample : Int64 read FStartSample write SetStartSample;
C++ Builder:
__property __int64 StartSample = { read=FStartSample, write=SetStartSample };
Summary
Starting sample for the segment.
Description
Use this property to specify the starting sample for the
segment to be played.
Delphi example:
ALWavePlayer1.PlaySegment.StartSample := 2000;
C++ Builder example:
ALWavePlayer1->PlaySegment->StartSample = 2000;
Visual C++(MFC/Win32) example:
ALWavePlayer1.PlaySegment.StartSample = 2000;
C# Example:
wavePlayer1.PlaySegment.StartSample = 2000;