次の方法で共有


COleDateTime::GetAsDBTIMESTAMP

DBTIMESTAMP のデータ構造体として COleDateTime のオブジェクトの時刻を取得するときにこのメソッドを呼び出します。

bool GetAsDBTIMESTAMP(
   DBTIMESTAMP& dbts
) const throw();

パラメーター

戻り値

正常終了した場合は 0 以外を返します。それ以外の場合は 0 を返します。

解説

dbts 参照された構造で発生した時刻を格納します。この関数によって初期化された DBTIMESTAMP のデータ構造にゼロが fraction メンバーのセットがあります。

使用例

COleDateTime t = COleDateTime::GetCurrentTime();
DBTIMESTAMP ts;
t.GetAsDBTIMESTAMP(ts); // retrieves the time in t into the ts structure

必要条件

ヘッダー : atlcomtime.h

参照

関連項目

COleDateTime クラス

階層図