FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.CellType 名前空間 > DateTimeCellType クラス : Calendar プロパティ |
'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;}
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