// // DateFormat.cs // // Author: // Martin Adoue (martin@cwanet.com) // // (C) 2002 Martin Adoue // namespace Microsoft.VisualBasic { /// /// When you call the DateValue function, you can use the following /// enumeration members in your code in place of the actual values. /// public enum DateFormat : int { /// /// For real numbers, displays a date and time. If the number has no fractional part, displays only a date. If the number has no integer part, displays time only. Date and time display is determined by your computer's regional settings. /// GeneralDate = 0, /// /// Displays a date using the long-date format specified in your computer's regional settings. /// LongDate = 1, /// /// Displays a date using the short-date format specified in your computer's regional settings. /// ShortDate = 2, /// /// Displays a time using the long-time format specified in your computer's regional settings. /// LongTime = 3, /// /// Displays a time using the short-time format specified in your computer's regional settings. /// ShortTime = 4 }; }