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

日付データの四半期を取得します。
構文
Public ReadOnly Property Quarter As Integer
public int Quarter {get;}

プロパティ値

Quarterの値 説明
1 第1四半期 : 1〜3月
2 第2四半期 : 4〜6月
3 第3四半期 : 7〜9月
4 第4四半期 : 10〜12月
解説
Quarterプロパティは、第1から第4までの四半期を取得します。
使用例
次のサンプルコードは、日付に関するデータを取得する方法を示します。
Imports GrapeCity.Web.Input.Core

' 日付データを設定します。
Dim dtEx As DateTimeEx = New DateTimeEx(New DateTime(2015,3,31))

' 元号の名称を取得します。
Dim aEraName As String = dtEx.EraName
' 元号に対応した数値を取得します。
Dim aEra As Integer = dtEx.Era
' 元号で表した年を取得します。
Dim aEraYear As Integer = dtEx.EraYear
' 西暦の年を取得します。
Dim aYear As Integer = dtEx.Year
' 四半期を取得します。
Dim aQuarter As Integer = dtEx.Quarter
' 月を取得します。
Dim aMonth As Integer = dtEx.Month
' 日を取得します。
Dim aDay As Integer = dtEx.Day
using GrapeCity.Web.Input.Core;

// 日付データを設定します。
DateTimeEx dtEx = new DateTimeEx(new DateTime(2015,3,31));

// 元号の名称を取得します。
string aEraName = dtEx.EraName;
// 元号に対応した数値を取得します。
int aEra = dtEx.Era;
// 元号で表した年を取得します。
int aEraYear = dtEx.EraYear;
// 西暦の年を取得します。
int aYear = dtEx.Year;
// 四半期を取得します。
int aQuarter = dtEx.Quarter;
// 月を取得します。
int aMonth = dtEx.Month;
// 日を取得します。
int aDay = dtEx.Day;
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.