InsideBox メソッド
解説
進入検出エリアの検出状態を返します。
書式
Function InsideBox (BoxNumber As Integer) As Boolean
パラメーター
- BoxNumber
検出状態を返す進入検出エリアの番号 (1~15の整数)
戻り値
指定した進入検出エリア内にロボットハンドが進入しているときはTrue、そうでなければFalse
InsideBox使用例
VB 例:
Dim isInside As Boolean
isInside = m_spel.InsideBox(1)
C# 例:
bool isInside;
isInside = m_spel.InsideBox(1);