ConditionalFormattingCollection.AddTimePeriodConditionalFormatting(CellRange, ConditionalFormattingTimePeriod) Method
Applies a "date occurring…" conditional formatting rule.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
TimePeriodConditionalFormatting AddTimePeriodConditionalFormatting(
CellRange range,
ConditionalFormattingTimePeriod timePeriod
)
Parameters
Name | Type | Description |
---|---|---|
range | CellRange | A CellRange object that specifies a range of cells to which the conditional formatting rule is applied. |
timePeriod | ConditionalFormattingTimePeriod | One of the ConditionalFormattingTimePeriod enumeration values specifying time periods to be highlighted in a range of cells. |
Returns
Type | Description |
---|---|
TimePeriodConditionalFormatting | A TimePeriodConditionalFormatting object that represents the specified conditional format. |
Example
This example demonstrates how to apply a "date occurring…" conditional formatting rule.
To create a new conditional formatting rule represented by the TimePeriodConditionalFormatting object, access the collection of conditional formats from the Worksheet.ConditionalFormattings property and call the
ConditionalFormattingCollection.AddTimePeriodConditionalFormatting
method. Pass the following parameters:- A CellRange object that defines a range of cells to which the rule is applied.
- A time period to be highlighted. This parameter is specified by one of the ConditionalFormattingTimePeriod enumeration values.
- Specify formatting options to be applied to cells if the condition is true using the ISupportsFormatting.Formatting property of the TimePeriodConditionalFormatting object.
Note
Transparency is not supported in conditional formatting.
To remove the TimePeriodConditionalFormatting object, use the ConditionalFormattingCollection.Remove, ConditionalFormattingCollection.RemoveAt or ConditionalFormattingCollection.Clear methods.
// Create the rule to highlight today's dates in cells B2 through B6.
TimePeriodConditionalFormatting cfRule =
worksheet.ConditionalFormattings.AddTimePeriodConditionalFormatting(worksheet.Range["$B$2:$B$6"], ConditionalFormattingTimePeriod.Today);
// Specify formatting options to be applied to cells if the condition is true.
// Set the background color to pink.
cfRule.Formatting.Fill.BackgroundColor = Color.FromArgb(255, 0xF2, 0xAE, 0xE3);
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the AddTimePeriodConditionalFormatting(CellRange, ConditionalFormattingTimePeriod) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.