DateTimeFormatInfo.ShortDatePattern Property
Gets or sets the format pattern for a short date value, which is associated with the 'd' format character.
[Visual Basic] Public Property ShortDatePattern As String [C#] public string ShortDatePattern {get; set;} [C++] public: __property String* get_ShortDatePattern(); public: __property void set_ShortDatePattern(String*); [JScript] public function get ShortDatePattern() : String; public function set ShortDatePattern(String);
Property Value
The format pattern for a short date value, which is associated with the 'd' format character.
Exceptions
| Exception Type | Condition |
|---|---|
| ArgumentNullException | The property is being set to a null reference (Nothing in Visual Basic). |
| InvalidOperationException | The property is being set and the DateTimeFormatInfo is read-only. |
Remarks
See DateTimeFormatInfo for patterns that can be combined to construct custom patterns; for example, "MM/dd/yyyy".
This property is affected if the value of the Calendar property changes.
Example
[Visual Basic, C#, C++] The following code example displays the value of ShortDatePattern for a few cultures.
[Visual Basic] Imports System Imports System.Globalization Public Class SamplesDTFI Public Shared Sub Main() ' Displays the values of the pattern properties. Console.WriteLine(" CULTURE PROPERTY VALUE") PrintPattern("en-US") PrintPattern("ja-JP") PrintPattern("fr-FR") End Sub 'Main Public Shared Sub PrintPattern(myCulture As [String]) Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture, False).DateTimeFormat Console.WriteLine(" {0} {1}", myCulture, myDTFI.ShortDatePattern) End Sub 'PrintPattern End Class 'SamplesDTFI 'This code produces the following output. ' ' CULTURE PROPERTY VALUE ' en-US M/d/yyyy ' ja-JP yyyy/MM/dd ' fr-FR dd/MM/yyyy ' [C#] using System; using System.Globalization; public class SamplesDTFI { public static void Main() { // Displays the values of the pattern properties. Console.WriteLine( " CULTURE PROPERTY VALUE" ); PrintPattern( "en-US" ); PrintPattern( "ja-JP" ); PrintPattern( "fr-FR" ); } public static void PrintPattern( String myCulture ) { DateTimeFormatInfo myDTFI = new CultureInfo( myCulture, false ).DateTimeFormat; Console.WriteLine( " {0} {1}", myCulture, myDTFI.ShortDatePattern ); } } /* This code produces the following output. CULTURE PROPERTY VALUE en-US M/d/yyyy ja-JP yyyy/MM/dd fr-FR dd/MM/yyyy */ [C++] #using <mscorlib.dll> using namespace System; using namespace System::Globalization; void PrintPattern(String * myCulture) { CultureInfo * MyCI = new CultureInfo(myCulture, false); DateTimeFormatInfo* myDTFI = MyCI -> DateTimeFormat; Console::WriteLine(S" {0} {1}", myCulture, myDTFI -> ShortDatePattern); } int main() { // Displays the values of the pattern properties. Console::WriteLine(S" CULTURE PROPERTY VALUE"); PrintPattern(S"en-US"); PrintPattern(S"ja-JP"); PrintPattern(S"fr-FR"); } /* This code produces the following output. CULTURE PROPERTY VALUE en-US M/d/yyyy ja-JP yyyy/MM/dd fr-FR dd/MM/yyyy */
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework, Common Language Infrastructure (CLI) Standard
See Also
DateTimeFormatInfo Class | DateTimeFormatInfo Members | System.Globalization Namespace