Gets or sets the style to use for the processed cell or null (Nothing in Visual Basic) to use the default style.
Namespace: MindFusion.Scheduling.Reporting
Assembly: MindFusion.Scheduling.Wpf.Reporting
C#
![]() |
---|
public ReportStyle Style { get; set; } |
Visual Basic
![]() |
---|
Public Property Style As ReportStyle |
An instance of the ReportStyle class.
In order to specify custom visualization settings for the cell, you need to instantiate a ReportStyle object, set only those properties you are interested in changing and assign the object to this property.
The following example demonstrates how to specify red background for all items which end in the past:
C#
![]() |
---|
void OnQueryStyle(object sender, ReportQueryStyleEventArgs e) { if (e.Item.EndTime < DateTime.Now) { ReportStyle customStyle = new ReportStyle(); customStyle.Background = Brushes.Red; e.Style = customStyle; } } |
Visual Basic
![]() |
---|
Sub OnQueryStyle(ByVal sender As Object, ByVal e As ReportQueryStyleEventArgs) |