Gets or sets the visualization style of the date cells included in the formatted range.
Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling
C# Copy Code |
---|
public Style Style { get; set; } |
Visual Basic Copy Code |
---|
Public Property Style As Style |
A Style object that defines the appearance of time cells included in the specified interval.
Only the properties in this Style object that have been explicitly set would be used. See the example section below for more detail.
The following example creates a custom style for the dates in the range 03/20 - 03/24. The style changes only the border color and the border width of the cells in the specified range. The values of all other properties are retrieved from the default settings, because they are never explicitly set in this custom style.
C# Copy Code |
---|
DateStyle style = new DateStyle(); |
Visual Basic Copy Code |
---|
Dim style As New DateStyle() |