DateBoldEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DateBoldEvent.cs / 1305376 / DateBoldEvent.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Windows.Forms { 
 
    using System.Diagnostics;
 
    using System;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Drawing; 
    using Microsoft.Win32;
 
    ///  
    /// 
    ///  
    ///     The month calendar control fires this event to request information
    ///     about how the days within the visible months should be displayed.
    /// 
    // 
    //
    public class DateBoldEventArgs : EventArgs { 
        readonly DateTime   startDate;  //the starting date 
        readonly int        size; // requested length of array
        int[]            daysToBold = null; 

        internal DateBoldEventArgs(DateTime start, int size) {
            startDate = start;
            this.size = size; 
        }
        ///  
        ///  
        ///    [To be supplied.]
        ///  
        public DateTime StartDate {
            get { return startDate; }
        }
        ///  
        /// 
        ///    [To be supplied.] 
        ///  
        public int Size {
            get { return size; } 
        }
        /// 
        /// 
        ///    [To be supplied.] 
        /// 
        public int[] DaysToBold { 
            get { return daysToBold; } 
            set { daysToBold = value; }
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK