Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / CalendarDay.cs / 1305376 / CalendarDay.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel; using System; ////// 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.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
- DataKeyArray.cs
- StaticDataManager.cs
- PropertyEmitter.cs
- WebConfigurationHost.cs
- WebPartsPersonalizationAuthorization.cs
- UriTemplate.cs
- ToolStripPanelRow.cs
- GeneralTransform3DCollection.cs
- ModelFactory.cs
- EdmScalarPropertyAttribute.cs
- ConnectionManagementSection.cs
- OracleDateTime.cs
- HttpFileCollection.cs
- XDRSchema.cs
- Mappings.cs
- dataobject.cs
- CustomCredentialPolicy.cs
- TraceInternal.cs
- ProfileGroupSettingsCollection.cs
- WindowsRegion.cs
- XmlEventCache.cs
- BitConverter.cs
- PointCollectionValueSerializer.cs
- ConfigUtil.cs
- FixedSOMImage.cs
- AttributeAction.cs
- FunctionParameter.cs
- MessageQueueKey.cs
- DetailsViewUpdatedEventArgs.cs
- MinimizableAttributeTypeConverter.cs
- PersonalizationEntry.cs
- Multiply.cs
- LambdaCompiler.Unary.cs
- COMException.cs
- DrawingAttributes.cs
- TemplateXamlParser.cs
- HtmlInputSubmit.cs
- DefaultAssemblyResolver.cs
- AttributeConverter.cs
- FlowDocumentPaginator.cs
- ClientRolePrincipal.cs
- DiscoveryReference.cs
- ProjectionPathSegment.cs
- BigInt.cs
- AttributeProviderAttribute.cs
- TemplateKeyConverter.cs
- WindowsStartMenu.cs
- UrlMappingsModule.cs
- StylusPointPropertyUnit.cs
- PointCollectionValueSerializer.cs
- FileDetails.cs
- CodeParameterDeclarationExpression.cs
- GenerateScriptTypeAttribute.cs
- InputElement.cs
- UrlMapping.cs
- BamlRecordHelper.cs
- XmlSchemaSimpleTypeRestriction.cs
- BufferModesCollection.cs
- ProcessHostFactoryHelper.cs
- XmlDictionaryString.cs
- QueryAccessibilityHelpEvent.cs
- HebrewNumber.cs
- WebPartsPersonalization.cs
- Globals.cs
- GeneralTransform3DTo2D.cs
- UInt32Storage.cs
- CodeEntryPointMethod.cs
- MetadataArtifactLoaderCompositeResource.cs
- PrintingPermissionAttribute.cs
- InvalidTimeZoneException.cs
- UnsettableComboBox.cs
- CodeCatchClause.cs
- SetterBase.cs
- Itemizer.cs
- SortedDictionary.cs
- MessageAction.cs
- MultipartContentParser.cs
- XmlDocumentType.cs
- HandledEventArgs.cs
- ClrPerspective.cs
- ConfigurationProperty.cs
- TabPage.cs
- VSWCFServiceContractGenerator.cs
- PrintDocument.cs
- PropertyBuilder.cs
- WebServiceMethodData.cs
- RoleGroup.cs
- TextEndOfSegment.cs
- SystemResourceHost.cs
- propertyentry.cs
- DebugView.cs
- InfoCard.cs
- ModelVisual3D.cs
- DoWhile.cs
- GridView.cs
- XmlParser.cs
- WindowsFormsHostAutomationPeer.cs
- PropertyBuilder.cs
- RuntimeCompatibilityAttribute.cs
- TransformerInfo.cs