名前空間一覧 > GrapeCity.Web.Input.Core 名前空間 > DateTimeEx クラス : 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());