AlphaSynth.Player.SynthPlayer.OnPositionChanged C# (CSharp) 메소드

OnPositionChanged() 보호된 메소드

protected OnPositionChanged ( PositionChangedEventArgs e ) : void
e PositionChangedEventArgs
리턴 void
        protected virtual void OnPositionChanged(PositionChangedEventArgs e)
        {
            EventHandler<PositionChangedEventArgs> handler = PositionChanged;
            if (handler != null) handler(this, e);
        }