CommandInCycle プロパティー

解説
非同期で実行可能なメソッドが実行されているかどうかを返します

書式
ReadOnly Property CommandInCycle As Boolean

戻り値
非同期で実行されているときはTrue、そうでないときはFalse

参照
AsyncMode プロパティー

CommandInCycle使用例
VB 例:

If m_spel.CommandInCycle Then  
    MsgBox "A SPEL command is executing, operation aborted"  
End If  

C# 例:

if (m_spel.CommandInCycle)  
    MessageBox.Show("SPEL command is executing, operation aborted");