Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; ////// [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; ///Represents a calendar day. ////// 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; } ///[To be supplied.] ////// public DateTime Date { get { return date; } } ///Gets the date represented by an instance of this class. This /// property is read-only. ////// public string DayNumberText { get { return dayNumberText; } } ///Gets the string equivilent of the date represented by an instance of this class. This property is read-only. ////// public bool IsOtherMonth { get { return isOtherMonth; } } ///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 IsSelectable { get { return isSelectable; } set { isSelectable = value; } } ///Gets or sets a value indicating whether the date represented /// by an instance of /// this class can be selected. ////// public bool IsSelected { get { return isSelected; } } ///Gets a value indicating whether date represented by an instance of this class is selected. 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 today's date. This property is read-only. ////// public bool IsWeekend { get { return isWeekend; } } } }Gets a value indicating whether the date represented by an instance of /// this class is on a weekend day. This property is read-only. ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectViewQueryResultData.cs
- Registry.cs
- SystemFonts.cs
- PolicyReader.cs
- PauseStoryboard.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- FixedTextSelectionProcessor.cs
- EntityDataSourceMemberPath.cs
- HyperLinkDataBindingHandler.cs
- CookielessHelper.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- DataGridViewBand.cs
- Control.cs
- GradientSpreadMethodValidation.cs
- DrawingState.cs
- ExpressionBuilder.cs
- XmlName.cs
- PriorityBindingExpression.cs
- Interlocked.cs
- FatalException.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- GradientBrush.cs
- AppearanceEditorPart.cs
- TypeResolvingOptions.cs
- ImmutableClientRuntime.cs
- TextClipboardData.cs
- BitHelper.cs
- RestHandler.cs
- SecurityUtils.cs
- NativeWindow.cs
- SqlIdentifier.cs
- ComponentCommands.cs
- Translator.cs
- __ConsoleStream.cs
- StrongNamePublicKeyBlob.cs
- HandleCollector.cs
- Timer.cs
- HyperLinkColumn.cs
- PEFileReader.cs
- CompilerInfo.cs
- DataControlField.cs
- DataGridViewButtonColumn.cs
- TypeSource.cs
- BuildProviderAppliesToAttribute.cs
- SamlAssertion.cs
- PackageRelationship.cs
- HeaderCollection.cs
- MailDefinition.cs
- TreeNodeCollection.cs
- InfoCardServiceInstallComponent.cs
- KnownTypes.cs
- InkCanvasFeedbackAdorner.cs
- SByte.cs
- FixedTextSelectionProcessor.cs
- ClientConvert.cs
- ProjectionPath.cs
- DirectoryNotFoundException.cs
- EmptyStringExpandableObjectConverter.cs
- WebPartConnectionsConnectVerb.cs
- AgileSafeNativeMemoryHandle.cs
- PreviousTrackingServiceAttribute.cs
- ApplicationFileCodeDomTreeGenerator.cs
- RadioButtonRenderer.cs
- XmlQueryRuntime.cs
- DoubleSumAggregationOperator.cs
- ObjectSpanRewriter.cs
- SourceLocationProvider.cs
- EmptyReadOnlyDictionaryInternal.cs
- Condition.cs
- SrgsToken.cs
- WebPartsPersonalizationAuthorization.cs
- InputProcessorProfiles.cs
- DataGridViewColumnCollection.cs
- XmlIlVisitor.cs
- FacetEnabledSchemaElement.cs
- User.cs
- PeerCredentialElement.cs
- StackSpiller.Temps.cs
- Registration.cs
- ClientRuntimeConfig.cs
- GenericPrincipal.cs
- PropertyConverter.cs
- EncryptedPackageFilter.cs
- DesignerLoader.cs
- ImmutablePropertyDescriptorGridEntry.cs
- X509CertificateStore.cs
- CursorInteropHelper.cs
- BaseDataBoundControl.cs
- ExitEventArgs.cs
- UIElementHelper.cs
- EntityClientCacheEntry.cs
- Brush.cs
- TableCellCollection.cs
- SchemaContext.cs
- WindowVisualStateTracker.cs
- _SafeNetHandles.cs
- ConfigurationSectionGroupCollection.cs
- FamilyMapCollection.cs
- Int32Collection.cs
- CheckBoxFlatAdapter.cs