PowerTools SPREAD for ASP.NET 8.0J
TimePeriod 列挙体

日付条件付き書式ルールで使用される期間を表します。これは、条件付き書式ルールが更新または適用される日付に基づいて変化する動的な期間です。
構文
'Declaration
 
Public Enum TimePeriod 
   Inherits System.Enum
public enum TimePeriod : System.Enum 
メンバ
メンバ説明
Last7Days過去7日間を示します。
LastMonth先月に属する日付を示します。
LastWeek先週に属する日付を示します。
NextMonth来月に属する日付を示します。
NextWeek来週に属する日付を示します。
ThisMonth今月に属する日付を示します。
ThisWeek今週に属する日付を示します。
Today今日の日付を示します。
Tomorrow明日の日付を示します。
Yesterday昨日の日付を示します。
次のサンプルコードは、TimePeriod列挙体を設定します。
protected void Page_Load(object sender, System.EventArgs e)
{
   FpSpread1.Sheets[0].Cells[1, 1].Value = DateTime.Now;
}

protected void Button1_Click(object sender, EventArgs e)
{
    //Date Occurs CF
    FarPoint.Web.Spread.TimePeriodConditionalFormattingRule time = new FarPoint.Web.Spread.TimePeriodConditionalFormattingRule(FarPoint.Web.Spread.TimePeriod.Last7Days);
    time.TimePeriod = FarPoint.Web.Spread.TimePeriod.Last7Days;
    time.ForeColor = Color.Magenta;
    FpSpread1.ActiveSheetView.SetConditionalFormatting(1, 1, time);
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    FpSpread1.Sheets(0).Cells(1, 1).Value = Date.Now
End Sub

Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    'Date Occurs CF
    Dim time As New FarPoint.Web.Spread.TimePeriodConditionalFormattingRule(FarPoint.Web.Spread.TimePeriod.Last7Days)
    time.TimePeriod = FarPoint.Web.Spread.TimePeriod.Last7Days
    time.ForeColor = Drawing.Color.DarkMagenta
    FpSpread1.ActiveSheetView.SetConditionalFormatting(1, 1, time)
End Sub
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.TimePeriod

参照

FarPoint.Web.Spread 名前空間

 

 


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