mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
1.5 KiB
1.5 KiB
Title: Calendar Order: 40 RedirectFrom: calendar
The Calendar
is used to render a calendar to the terminal.
Usage
To render a calendar, create a Calendar
instance with a target date.
var calendar = new Calendar(2020,10);
AnsiConsole.Render(calendar);
Culture
You can set the calendar's culture to show localized weekdays.
var calendar = new Calendar(2020,10);
calendar.Culture("ja-JP");
AnsiConsole.Render(calendar);
Header
You can hide the calendar header.
var calendar = new Calendar(2020,10);
calendar.HideHeader();
AnsiConsole.Render(calendar);
You can set the header style of the calendar.
var calendar = new Calendar(2020, 10);
calendar.HeaderStyle(Style.Parse("blue bold"));
AnsiConsole.Render(calendar);
Calendar Events
You can add an event to the calendar. If a date has an event associated with it, the date gets highlighted in the calendar.
var calendar = new Calendar(2020,10);
calendar.AddCalendarEvent(2020, 10, 11);
AnsiConsole.Write(calendar);
You can set the highlight style for a calendar event via SetHighlightStyle
.
var calendar = new Calendar(2020, 10);
calendar.AddCalendarEvent(2020, 10, 11);
calendar.HighlightStyle(Style.Parse("yellow bold"));
AnsiConsole.Write(calendar);