ux.Master.Stop C# (CSharp) Method

Stop() public method

再生を停止します。
public Stop ( ) : void
return void
        public void Stop()
        {
            if (!this.Playing)
                return;

            this.Release();
            this.Playing = false;
        }