PowerTools InputMan for ASP.NET 8.0J
DayOfYear プロパティ
使用例 

日付データの年間積算日を取得します。
構文
Public ReadOnly Property DayOfYear As Integer
public int DayOfYear {get;}
解説
DayOfYearプロパティは、1から366までの年間積算日を取得します。
使用例
次のサンプルコードは、日付の年間積算日を取得する例を示します。
Imports GrapeCity.Web.Input.Core

' 日付データを設定します。
Dim dtEx As DateTimeEx = New DateTimeEx(New DateTime(2015,3,31))
' 年間積算日を取得します。
Label1.Text = dtEx.DayOfYear.ToString()
using GrapeCity.Web.Input.Core;

// 日付データを設定します。
DateTimeEx dtEx = new DateTimeEx(new DateTime(2015,3,31));
// 年間積算日を取得します。
label1.Text = dtEx.DayOfYear.ToString();
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.