ComponentFactory.Krypton.Toolkit.KryptonMonthCalendar.IsInputChar C# (CSharp) Метод

IsInputChar() защищенный Метод

Determines if a character is an input character that the control recognizes.
protected IsInputChar ( char charCode ) : bool
charCode char The character to test.
Результат bool
        protected override bool IsInputChar(char charCode)
        {
            // We take all regular input characters
            return char.IsLetterOrDigit(charCode);
        }
KryptonMonthCalendar