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

YdxAiGetClock

機能

サンプリングクロックの設定を取得します。

書式

INT YdxAiGetClock(
    INT id,
    INT* clockType
);

パラメータ

id

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

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

clockType

クロックの種類を格納する変数へのポインタを指定します。

意味
0 内部クロック
1 外部クロック
言語 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

備考

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

使用例

サンプリングクロックの設定を取得します。

C#

int result;
int clockType;
result = Ydx.AiGetClock(id, out clockType);

VB(.NET2002以降)

Dim result As Integer
Dim clockType As Integer
result = YdxAiGetClock(id, clockType)

VB6.0

Dim result As Long
Dim clockType As Long
result = YdxAiGetClock(id, clockType)

C++/CLI

int result;
int clockType;
result = YdxAiGetClock(id, &clockType);

C/C++

INT result;
INT clockType;
result = YdxAiGetClock(id, &clockType);