Kimono.KDateTime.OutOfRange C# (CSharp) Method

OutOfRange() public method

Checks whether the date/time returned by the last call to fromString() was invalid because an otherwise valid date was outside the range which can be represented by QDate. This status occurs when fromString() read a valid string containing a year earlier than -4712 (4713 BC). On exit from fromString(), if outOfRange() returns true, isValid() will return false.
public OutOfRange ( ) : bool
return bool
        public bool OutOfRange()
        {
            return (bool) interceptor.Invoke("outOfRange", "outOfRange() const", typeof(bool));
        }