PowerTools InputMan for ASP.NET 8.0J
ToOADate メソッド
使用例 

DateTimeExインスタンスの値をOLEオートメーション日付に変換します。
構文
Public Function ToOADate() As Double
public double ToOADate()

戻り値の型

OLEオートメーション日付。
解説
ToOADateメソッドは、DateTimeExインスタンスの値をWindowsのOLEオートメーション日付を表す倍精度浮動小数点数に変換します。

OLEオートメーション日付は、1899年12月30日の深夜からの日数を示す浮動小数点数です。TimeSpan値が正または負の31241376000000000以上のDateTimeExオブジェクトだけが、OLEオートメーション日付として表せます。
使用例
次のサンプルコードは、ToOADateメソッドの使用方法を示します。
Imports System.Diagnostics
Imports GrapeCity.Web.Input.Core

' DateTimeExオブジェクトからOLEオートメーション日付を取得します。
Dim dtEx As DateTimeEx = New DateTimeEx(New DateTime(2015, 03, 31, 10, 30, 15))
Dim oaDate As Double = dtEx.ToOADate()
Debug.WriteLine(oaDate.ToString())
using System.Diagnostics;
using GrapeCity.Web.Input.Core;

// DateTimeExオブジェクトからOLEオートメーション日付を取得します。
DateTimeEx dtEx = new DateTimeEx(new DateTime(2015, 03, 31, 10, 30, 15));
double oaDate = dtEx.ToOADate();
Debug.WriteLine(oaDate.ToString());
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.