MaskInputRejectedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / MaskInputRejectedEventArgs.cs / 1 / MaskInputRejectedEventArgs.cs

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

namespace System.Windows.Forms 
{ 
    using System.ComponentModel;
    using System.Diagnostics; 

    /// 
    ///     MaskInputRejectedEventArgs.  Provides data for the MaskInputRejected event.
    ///  
    public class MaskInputRejectedEventArgs : EventArgs
    { 
        private int position; 
        MaskedTextResultHint hint;
 
        public MaskInputRejectedEventArgs(int position, MaskedTextResultHint rejectionHint)
        {
            Debug.Assert(!MaskedTextProvider.GetOperationResultFromHint(rejectionHint), "Rejection hint is not on a failure.");
            this.position = position; 
            this.hint     = rejectionHint;
        } 
 
        /// 
        ///     The position where the test failed the mask constraint. 
        /// 
        public int Position
        {
            get 
            {
                return this.position; 
            } 
        }
 
        /// 
        ///     Retreives a hint on why the input is rejected.
        /// 
        public MaskedTextResultHint RejectionHint 
        {
            get 
            { 
                return this.hint;
            } 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

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