DateTimeFormatInfo.LongTimePattern Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the custom format string for a long time value, which is associated with the "T" standard format string.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.StringThe custom format string for a long time value, which is associated with the "T" standard format string.
| Exception | Condition |
|---|---|
| ArgumentNullException | An attempt was made to set the property to Nothing. |
| InvalidOperationException | The DateTimeFormatInfo object is read-only. |
The following example displays the value of LongTimePattern for a few cultures.
Imports System.Globalization Public Class Example Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) ' Displays the values of the pattern properties. outputBlock.Text &= " CULTURE PROPERTY VALUE" & vbCrLf PrintPattern(outputBlock, "en-US") PrintPattern(outputBlock, "ar-EG") PrintPattern(outputBlock, "fr-FR") End Sub Public Shared Sub PrintPattern(ByVal outputBlock As System.Windows.Controls.TextBlock, ByVal myCulture As [String]) Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture).DateTimeFormat outputBlock.Text += String.Format(" {0} {1}", myCulture, myDTFI.LongTimePattern) & vbCrLf End Sub End Class ' This example displays the following output: ' CULTURE PROPERTY VALUE ' en-US h:mm:ss tt ' ar-EG hh:mm:ss tt ' fr-FR HH:mm:ss
Show: