DateTimeFormatInfo.LongTimePattern Propriété
Définition
Obtient ou définit la chaîne de format personnalisée pour une valeur d'heure longue.Gets or sets the custom format string for a long time value.
public:
property System::String ^ LongTimePattern { System::String ^ get(); void set(System::String ^ value); };
public string LongTimePattern { get; set; }
member this.LongTimePattern : string with get, set
Public Property LongTimePattern As String
Valeur de propriété
Modèle de format pour une valeur d’heure longue.The format pattern for a long time value.
Exceptions
La propriété est définie sur null
.The property is being set to null
.
La propriété est définie et l’objet DateTimeFormatInfo est en lecture seule.The property is being set and the DateTimeFormatInfo object is read-only.
Exemples
L’exemple suivant affiche la valeur de LongTimePattern pour quelques cultures.The following example displays the value of LongTimePattern for a few cultures.
using namespace System;
using namespace System::Globalization;
void PrintPattern( String^ myCulture )
{
CultureInfo^ MyCI = gcnew CultureInfo( myCulture,false );
DateTimeFormatInfo^ myDTFI = MyCI->DateTimeFormat;
Console::WriteLine( " {0} {1}", myCulture, myDTFI->LongTimePattern );
}
int main()
{
// Displays the values of the pattern properties.
Console::WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US h:mm:ss tt
ja-JP H:mm:ss
fr-FR HH:mm:ss
*/
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.LongTimePattern );
}
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US h:mm:ss tt
ja-JP H:mm:ss
fr-FR HH:mm:ss
*/
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
Public Shared Sub PrintPattern(myCulture As [String])
Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture, False).DateTimeFormat
Console.WriteLine(" {0} {1}", myCulture, myDTFI.LongTimePattern)
End Sub
End Class
'This code produces the following output.
'
' CULTURE PROPERTY VALUE
' en-US h:mm:ss tt
' ja-JP H:mm:ss
' fr-FR HH:mm:ss
'
Remarques
La LongTimePattern propriété définit le format spécifique à la culture des chaînes de date qui sont retournées par les appels aux DateTime.ToString DateTimeOffset.ToString méthodes et et les chaînes de format composites qui ont fourni la chaîne de format standard "T".The LongTimePattern property defines the culture-specific format of date strings that are returned by calls to the DateTime.ToString and DateTimeOffset.ToString methods and by composite format strings that are supplied the "T" standard format string.
Nous vous recommandons de définir le séparateur d’heure dans le modèle d’heure longue sur une chaîne exacte au lieu d’utiliser l’espace réservé de séparateur d’heure.We recommend that you set the time separator in the long time pattern to an exact string instead of using the time separator placeholder. Par exemple, pour obtenir le modèle h-mm-ss, définissez le modèle de date longue sur « h-mm-ss ».For example, to obtain the pattern h-mm-ss, set the long date pattern to "h-mm-ss".