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
- LoginCancelEventArgs.cs
- DiagnosticsConfigurationHandler.cs
- BaseCollection.cs
- URL.cs
- BamlRecords.cs
- XmlReader.cs
- ISO2022Encoding.cs
- TerminatorSinks.cs
- Debug.cs
- MethodInfo.cs
- EnumValidator.cs
- CodeLabeledStatement.cs
- Drawing.cs
- Path.cs
- Boolean.cs
- AsyncStreamReader.cs
- StatusBar.cs
- FloaterParaClient.cs
- DataTableClearEvent.cs
- UnicodeEncoding.cs
- Matrix3D.cs
- TypeBuilderInstantiation.cs
- WindowsHyperlink.cs
- FileFormatException.cs
- TextEditorLists.cs
- wgx_sdk_version.cs
- Assembly.cs
- TextLineResult.cs
- ReaderWriterLockSlim.cs
- TextTreeRootNode.cs
- exports.cs
- PointCollectionValueSerializer.cs
- FixedSOMImage.cs
- JsonReaderDelegator.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- UserControlBuildProvider.cs
- WebHttpSecurityElement.cs
- Serialization.cs
- MaxMessageSizeStream.cs
- ColumnBinding.cs
- XmlEventCache.cs
- DbDataAdapter.cs
- Size3D.cs
- ObjectNotFoundException.cs
- LongPath.cs
- Opcode.cs
- QueueSurrogate.cs
- Facet.cs
- Int64Converter.cs
- RegexCompilationInfo.cs
- EventLogEntry.cs
- WhiteSpaceTrimStringConverter.cs
- CompletionBookmark.cs
- CustomErrorsSection.cs
- XmlNamespaceMapping.cs
- PermissionListSet.cs
- OutputCacheProfileCollection.cs
- ImageInfo.cs
- OutputCacheEntry.cs
- MenuItemStyle.cs
- TableCellCollection.cs
- DataObjectCopyingEventArgs.cs
- ToolStripSplitButton.cs
- DataGridViewMethods.cs
- PasswordBoxAutomationPeer.cs
- HttpConfigurationSystem.cs
- mongolianshape.cs
- FontFamilyValueSerializer.cs
- UIElement.cs
- __ComObject.cs
- InternalBufferOverflowException.cs
- Repeater.cs
- BooleanAnimationBase.cs
- CalendarButtonAutomationPeer.cs
- DictationGrammar.cs
- DBConnection.cs
- EntityType.cs
- ConnectionPoolManager.cs
- HtmlControlAdapter.cs
- BitStack.cs
- translator.cs
- InvokePattern.cs
- MatrixTransform.cs
- InlineUIContainer.cs
- CorrelationTokenInvalidatedHandler.cs
- DataServiceQuery.cs
- RoleManagerSection.cs
- OleDbReferenceCollection.cs
- XmlSerializerFactory.cs
- _ProxyChain.cs
- ShaderRenderModeValidation.cs
- ProxyWebPart.cs
- ReferencedType.cs
- ValueConversionAttribute.cs
- embossbitmapeffect.cs
- HyperLinkDesigner.cs
- ComponentDispatcherThread.cs
- Scheduler.cs
- TreeViewImageIndexConverter.cs
- BamlRecordWriter.cs