MESCIUS SPREAD for Windows Forms 15.0J
Calendar プロパティ (DateTimeCellType)
使用例 

日付値を書式設定するためのカレンダーを取得または設定します。
構文
'宣言
 
Public Property Calendar As Calendar
public Calendar Calendar {get; set;}

プロパティ値

日付値の書式を設定するカレンダーを含む Calendar オブジェクト
使用例
次のサンプルコードは、韓国のカレンダーを使用するように文化情報を変更します。
Application.CurrentCulture = new System.Globalization.CultureInfo("ko-KR");

FarPoint.Win.Spread.CellType.DateTimeCellType dt = new FarPoint.Win.Spread.CellType.DateTimeCellType();
dt.Calendar = new System.Globalization.KoreanCalendar();
fpSpread1.ActiveSheet.Cells[0, 0].CellType = dt;
Application.CurrentCulture = New System.Globalization.CultureInfo("ko-KR")

Dim dt As New FarPoint.Win.Spread.CellType.DateTimeCellType
dt.Calendar = New System.Globalization.KoreanCalendar
fpSpread1.ActiveSheet.Cells(0, 0).CellType = dt
参照

DateTimeCellType クラス
DateTimeCellType メンバ

 

 


© MESCIUS inc. All rights reserved.