Intersoft ClientUI Documentation
DisplayMode Property (UXCalendar)



Gets or sets a value indicating whether the calendar is displayed in months, years, decades or century view.
Syntax
<CategoryAttribute("Common Properties")>
Public Property DisplayMode As CalendarDisplayMode
Dim instance As UXCalendar
Dim value As CalendarDisplayMode
 
instance.DisplayMode = value
 
value = instance.DisplayMode
[CategoryAttribute("Common Properties")]
public CalendarDisplayMode DisplayMode {get; set;}
[CategoryAttribute("Common Properties")]
public:
property CalendarDisplayMode DisplayMode {
   CalendarDisplayMode get();
   void set (    CalendarDisplayMode value);
}
Remarks

A calendar displays either the days of a month, the months of a year, the years of a decade, or the decades of century depending on the value of the DisplayDate and InitialDisplayMode properties. The following are display modes that available in UXCalendar:

 

XAML
Copy Code
<StackPanel>
    <Intersoft:UXCalendar x:Name="UXCalendar1" InitialDisplayMode="Month"/>        
    <Intersoft:UXCalendar x:Name="UXCalendar2" InitialDisplayMode="Year"/>        
    <Intersoft:UXCalendar x:Name="UXCalendar3" InitialDisplayMode="Decade"/>        
    <Intersoft:UXCalendar x:Name="UXCalendar4" InitialDisplayMode="Centry"/>        
</StackPanel>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXCalendar Class
UXCalendar Members

Concepts

UXCalendar

Send Feedback