PowerTools SPREAD for Windows Forms 8.0J
Calendar プロパティ (DateTimeCellType)


日付値を書式設定するためのカレンダーを取得または設定します。
構文
'Declaration
 
Public Property Calendar As Calendar
'使用法
 
Dim instance As DateTimeCellType
Dim value As Calendar
 
instance.Calendar = value
 
value = instance.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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.