Search
Calendar.ApplyTheme Method (Theme, Boolean)
See Also
 






Applies the specified theme to the calendar, optionally resetting all current settings.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public void ApplyTheme (
    Theme theme,
    bool reset
)

Visual Basic  Copy Code

Public Sub ApplyTheme( _
    theme As Theme, _
    reset As Boolean _
)

 Parameters

theme

A Theme object containing appearance settings.

reset

Specifies whether to reset the settings.

 Example

The following example attaches the Light theme to a calendar. The example assumes that calendar already references an existing Calendar object.

C#  Copy Code

calendar.ApplyTheme(MindFusion.Scheduling.WinForms.Theme.Light, false);

Visual Basic  Copy Code

calendar.ApplyTheme(MindFusion.Scheduling.WinForms.Theme.Light, False)

 See Also