WaitCommandComplete メソッド

解説
このコマンドは、AsyncModeがTrueの設定で開始されたコマンドが完了するのを待ちます。

書式
Sub WaitCommandComplete ()

参照
AsyncMode プロパティー

WaitCommandComplete 使用例
VB 例:

With m_spel  
  .AsyncMode = True  
  .Jump("pick")  
  .Delay(500)  
  .On(1)  
  .WaitCommandComplete()  
End With  

C# 例:

m_spel.AsyncMode = true;  
m_spel.Jump("pick");  
m_spel.Delay(500);  
m_spel.On(1);  
m_spel.WaitCommandComplete();