Calendar.HasWeekSelectors Method
.NET Framework 2.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Determines whether a CalendarSelectionMode object contains week selectors.
Namespace: System.Web.UI.WebControlsAssembly: System.Web (in system.web.dll)
protected boolean HasWeekSelectors ( CalendarSelectionMode selectionMode )
protected function HasWeekSelectors ( selectionMode : CalendarSelectionMode ) : boolean
Parameters
- selectionMode
One of the CalendarSelectionMode values.
Return Value
true if the CalendarSelectionMode contains week selectors; otherwise, false.The following code example demonstrates how to determine the value of the HasWeekSelectors property in a custom Calendar control.
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.JSL.Controls" Assembly="Samples.AspNet.JSL" %>
<%@ Page language="VJ#" %>
<HTML>
<HEAD>
<title>Custom Calendar - HasWeekSelectors - VJ# Example</title>
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<h3>Custom Calendar - HasWeekSelectors - VJ# Example</h3>
<aspSample:CustomCalendarHasWeekSelectors
id="Calendar1"
runat="server" />
</form>
</body>
</HTML>
package Samples.AspNet.JSL.Controls;
public class CustomCalendarHasWeekSelectors
extends System.Web.UI.WebControls.Calendar
{
protected void OnPreRender(System.EventArgs e)
{
// Determine if a CalendarSelectionMode.DayWeek contains WeekSelectors.
boolean hasWeekSelectors = this.HasWeekSelectors(
System.Web.UI.WebControls.CalendarSelectionMode.DayWeek);
// Call the base's OnPreRender method.
super.OnPreRender(e);
} //OnPreRender
} //CustomCalendarHasWeekSelectors
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: