Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / CalendarDay.cs / 1 / CalendarDay.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.ComponentModel;
using System;
using System.Security.Permissions;
///
/// Represents a calendar day.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class CalendarDay {
private DateTime date;
private bool isSelectable;
private bool isToday;
private bool isWeekend;
private bool isOtherMonth;
private bool isSelected;
private string dayNumberText;
///
/// [To be supplied.]
///
public CalendarDay(DateTime date, bool isWeekend, bool isToday, bool isSelected, bool isOtherMonth, string dayNumberText) {
this.date = date;
this.isWeekend = isWeekend;
this.isToday = isToday;
this.isOtherMonth = isOtherMonth;
this.isSelected = isSelected;
this.dayNumberText = dayNumberText;
}
///
/// Gets the date represented by an instance of this class. This
/// property is read-only.
///
public DateTime Date {
get {
return date;
}
}
///
/// Gets the string equivilent of the date represented by an instance of this class. This property is read-only.
///
public string DayNumberText {
get {
return dayNumberText;
}
}
///
/// Gets a value indicating whether the date represented by an instance of
/// this class is in a different month from the month currently being displayed. This
/// property is read-only.
///
public bool IsOtherMonth {
get {
return isOtherMonth;
}
}
///
/// Gets or sets a value indicating whether the date represented
/// by an instance of
/// this class can be selected.
///
public bool IsSelectable {
get {
return isSelectable;
}
set {
isSelectable = value;
}
}
///
/// Gets a value indicating whether date represented by an instance of this class is selected. This property is read-only.
///
public bool IsSelected {
get {
return isSelected;
}
}
///
/// Gets a value indicating whether the date represented by an instance of this class is today's date. This property is read-only.
///
public bool IsToday {
get {
return isToday;
}
}
///
/// Gets a value indicating whether the date represented by an instance of
/// this class is on a weekend day. This property is read-only.
///
public bool IsWeekend {
get {
return isWeekend;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.ComponentModel;
using System;
using System.Security.Permissions;
///
/// Represents a calendar day.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class CalendarDay {
private DateTime date;
private bool isSelectable;
private bool isToday;
private bool isWeekend;
private bool isOtherMonth;
private bool isSelected;
private string dayNumberText;
///
/// [To be supplied.]
///
public CalendarDay(DateTime date, bool isWeekend, bool isToday, bool isSelected, bool isOtherMonth, string dayNumberText) {
this.date = date;
this.isWeekend = isWeekend;
this.isToday = isToday;
this.isOtherMonth = isOtherMonth;
this.isSelected = isSelected;
this.dayNumberText = dayNumberText;
}
///
/// Gets the date represented by an instance of this class. This
/// property is read-only.
///
public DateTime Date {
get {
return date;
}
}
///
/// Gets the string equivilent of the date represented by an instance of this class. This property is read-only.
///
public string DayNumberText {
get {
return dayNumberText;
}
}
///
/// Gets a value indicating whether the date represented by an instance of
/// this class is in a different month from the month currently being displayed. This
/// property is read-only.
///
public bool IsOtherMonth {
get {
return isOtherMonth;
}
}
///
/// Gets or sets a value indicating whether the date represented
/// by an instance of
/// this class can be selected.
///
public bool IsSelectable {
get {
return isSelectable;
}
set {
isSelectable = value;
}
}
///
/// Gets a value indicating whether date represented by an instance of this class is selected. This property is read-only.
///
public bool IsSelected {
get {
return isSelected;
}
}
///
/// Gets a value indicating whether the date represented by an instance of this class is today's date. This property is read-only.
///
public bool IsToday {
get {
return isToday;
}
}
///
/// Gets a value indicating whether the date represented by an instance of
/// this class is on a weekend day. This property is read-only.
///
public bool IsWeekend {
get {
return isWeekend;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SamlConditions.cs
- ReferencedCollectionType.cs
- ScrollProviderWrapper.cs
- MetadataCacheItem.cs
- IdentifierService.cs
- ExtentKey.cs
- RelationalExpressions.cs
- ImageAnimator.cs
- Grid.cs
- ConfigurationManagerHelper.cs
- BuildProviderCollection.cs
- TreeNodeCollection.cs
- RangeExpression.cs
- ProbeDuplexCD1AsyncResult.cs
- CryptoProvider.cs
- COM2ExtendedTypeConverter.cs
- SelectedGridItemChangedEvent.cs
- RecordConverter.cs
- Attributes.cs
- InstallHelper.cs
- XmlDesigner.cs
- IndexedGlyphRun.cs
- WebUtil.cs
- ArrangedElementCollection.cs
- TypeConverterValueSerializer.cs
- SwitchElementsCollection.cs
- EntityException.cs
- SafeRightsManagementHandle.cs
- ContainerParagraph.cs
- RelatedImageListAttribute.cs
- PKCS1MaskGenerationMethod.cs
- UnsupportedPolicyOptionsException.cs
- AlternateView.cs
- XmlSchemaChoice.cs
- XmlImplementation.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- ToolStrip.cs
- CqlGenerator.cs
- IssuerInformation.cs
- CodeEntryPointMethod.cs
- BaseTemplateCodeDomTreeGenerator.cs
- CompilerScopeManager.cs
- PropagatorResult.cs
- IsolatedStoragePermission.cs
- ColorAnimationUsingKeyFrames.cs
- FeatureManager.cs
- SQLString.cs
- VariantWrapper.cs
- LeafCellTreeNode.cs
- TransactionTraceIdentifier.cs
- OdbcConnectionFactory.cs
- MemberDescriptor.cs
- XmlSchemaInfo.cs
- InvokePattern.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- DeobfuscatingStream.cs
- ToolStripItemCollection.cs
- DefaultSerializationProviderAttribute.cs
- Pair.cs
- DataControlImageButton.cs
- PathParser.cs
- XmlArrayItemAttribute.cs
- TempFiles.cs
- MimeWriter.cs
- FrameworkContextData.cs
- XmlSchemaComplexContentExtension.cs
- UniqueEventHelper.cs
- PropertyGroupDescription.cs
- TimeSpanParse.cs
- CommittableTransaction.cs
- DesignTimeVisibleAttribute.cs
- MenuItemBindingCollection.cs
- ArglessEventHandlerProxy.cs
- TrackingValidationObjectDictionary.cs
- SystemIPGlobalStatistics.cs
- EntityStoreSchemaFilterEntry.cs
- TextBoxAutoCompleteSourceConverter.cs
- SolidBrush.cs
- InputLanguageProfileNotifySink.cs
- AssemblyCollection.cs
- DynamicILGenerator.cs
- SafeCryptoHandles.cs
- Canvas.cs
- Site.cs
- AnimationClock.cs
- MSG.cs
- ReliableSession.cs
- VolatileResourceManager.cs
- MultipartIdentifier.cs
- CommandEventArgs.cs
- ListenerServiceInstallComponent.cs
- DataRowChangeEvent.cs
- QueryInterceptorAttribute.cs
- SafeFileHandle.cs
- DBConnectionString.cs
- NavigationProperty.cs
- AnnotationResourceChangedEventArgs.cs
- OdbcPermission.cs
- WindowsStreamSecurityUpgradeProvider.cs
- ModelItemKeyValuePair.cs