GrapeCity.Xaml.SpreadSheet.Data Namespace > ConditionalFormat Class : AddDateOccurringRule Method |
'Declaration Public Function AddDateOccurringRule( _ ByVal type As DateOccurringType, _ ByVal style As StyleInfo, _ ByVal ParamArray ranges() As CellRange _ ) As DateOccurringRule
'Usage Dim instance As ConditionalFormat Dim type As DateOccurringType Dim style As StyleInfo Dim ranges() As CellRange Dim value As DateOccurringRule value = instance.AddDateOccurringRule(type, style, ranges)
public DateOccurringRule AddDateOccurringRule( DateOccurringType type, StyleInfo style, params CellRange[] ranges )
GcSpreadSheet1.Sheets[0].SetValue(0, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now); GcSpreadSheet1.Sheets[0].SetValue(1, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(1)); GcSpreadSheet1.Sheets[0].SetValue(2, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(5)); GcSpreadSheet1.Sheets[0].SetValue(3, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(6)); GcSpreadSheet1.Sheets[0].SetValue(4, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(7)); GcSpreadSheet1.Sheets[0].SetValue(5, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(8)); var style2 = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); style2.Background = new SolidColorBrush(Windows.UI.Colors.Yellow); GcSpreadSheet1.Sheets[0].ConditionalFormats.AddDateOccurringRule(GrapeCity.Xaml.SpreadSheet.Data.DateOccurringType.NextWeek, style2, new GrapeCity.Xaml.SpreadSheet.Data.CellRange[] { new GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1) });
GcSpreadSheet1.Sheets(0).SetValue(0, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now) GcSpreadSheet1.Sheets(0).SetValue(1, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(1)) GcSpreadSheet1.Sheets(0).SetValue(2, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(5)) GcSpreadSheet1.Sheets(0).SetValue(3, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(6)) GcSpreadSheet1.Sheets(0).SetValue(4, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(7)) GcSpreadSheet1.Sheets(0).SetValue(5, 0, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, DateTime.Now.AddDays(8)) Dim style2 As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() style2.Background = New SolidColorBrush(Windows.UI.Colors.Yellow) GcSpreadSheet1.Sheets(0).ConditionalFormats.AddDateOccurringRule(GrapeCity.Xaml.SpreadSheet.Data.DateOccurringType.NextWeek, style2, New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)})
Target Platforms: Windows Server 2012, Windows RT