YdxAiGetStartCondition¶
機能¶
サンプリング開始条件の設定を取得します。
書式¶
INT YdxAiGetStartCondition(
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 | アナログ入力トリガ(アウトレンジ比較) |
言語 | 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 |
備考¶
パラメータの詳細については、YdxAiSetStartCondition関数 を参照してください。
使用例¶
サンプリング開始条件の設定を取得します。
C#¶
int result;
int condition;
int delay;
result = Ydx.AiGetStartCondition(id, out condition, out delay);
VB(.NET2002以降)¶
Dim result As Integer
Dim condition As Integer
Dim delay As Integer
result = YdxAiGetStartCondition(id, condition, delay)
VB6.0¶
Dim result As Long
Dim condition As Long
Dim delay As Long
result = YdxAiGetStartCondition(id, condition, delay)
C++/CLI¶
int result;
int condition;
int delay;
result = YdxAiGetStartCondition(id, &condition, &delay);
C/C++¶
INT result;
INT condition;
INT delay;
result = YdxAiGetStartCondition(id, &condition, &delay);