コンテンツにスキップ
関数 > アナログ入力 >

YdxAiGetStopCondition

機能

サンプリング停止条件の設定を取得します。

書式

INT YdxAiGetStopCondition(
    INT id,
    INT* condition,
    INT* delay
);

パラメータ

id

YdxOpen関数 で取得したIDを指定します。

言語 C# VB(.NET2002以降) VB6.0 C++/CLI C/C++
int Integer Long int INT

condition

停止条件を格納する変数へのポインタを指定します。

意味
0 サンプル数
1 外部トリガ
2 アナログ入力トリガ(レベル比較)
3 アナログ入力トリガ(インレンジ比較)
4 アナログ入力トリガ(アウトレンジ比較)
5 ソフトウェア(YdxAiStop関数)
言語 C# VB(.NET2002以降) VB6.0 C++/CLI C/C++
out int Integer Long int* INT*

delay

遅延回数を格納する変数へのポインタを指定します。

言語 C# VB(.NET2002以降) VB6.0 C++/CLI C/C++
out int Integer Long int* INT*

戻り値

関数が正常に終了した場合は、0(YDX_RESULT_SUCCESS)が返ります。
正常に終了しなかった場合は、0以外が返ります。
詳細は、戻り値一覧 を参照してください。

言語 C# VB(.NET2002以降) VB6.0 C++/CLI C/C++
int Integer Long int INT

備考

パラメータの詳細については、YdxAiSetStopCondition関数 を参照してください。

使用例

サンプリング停止条件の設定を取得します。

C#

int result;
int condition;
int delay;
result = Ydx.AiGetStopCondition(id, out condition, out delay);

VB(.NET2002以降)

Dim result As Integer
Dim condition As Integer
Dim delay As Integer
result = YdxAiGetStopCondition(id, condition, delay)

VB6.0

Dim result As Long
Dim condition As Long
Dim delay As Long
result = YdxAiGetStopCondition(id, condition, delay)

C++/CLI

int result;
int condition;
int delay;
result = YdxAiGetStopCondition(id, &condition, &delay);

C/C++

INT result;
INT condition;
INT delay;
result = YdxAiGetStopCondition(id, &condition, &delay);