DateTimeFormatInfo.FullDateTimePattern-Eigenschaft
Ruft das Formatmuster für einen langen Datums- und Zeitwert ab, das dem Formatzeichen "F" zugeordnet ist, oder legt dieses fest.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Property FullDateTimePattern As String
'Usage
Dim instance As DateTimeFormatInfo
Dim value As String
value = instance.FullDateTimePattern
instance.FullDateTimePattern = value
public string FullDateTimePattern { get; set; }
public:
property String^ FullDateTimePattern {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_FullDateTimePattern ()
/** @property */
public void set_FullDateTimePattern (String value)
public function get FullDateTimePattern () : String
public function set FullDateTimePattern (value : String)
Eigenschaftenwert
Das Formatmuster für einen langen Datums- und Zeitwert, das dem Formatzeichen "F" zugeordnet ist.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Die Eigenschaft wird auf NULL (Nothing in Visual Basic) festgelegt. |
|
Die Eigenschaft wird festgelegt, und DateTimeFormatInfo ist schreibgeschützt. |
Hinweise
Unter DateTimeFormatInfo finden Sie Muster, die zum Erstellen von benutzerdefinierten Mustern kombiniert werden können, z. B. "dddd, dd MMMM yyyy HH:mm:ss".
Eine Änderung des Werts der Calendar-Eigenschaft wirkt sich auf diese Eigenschaft aus.
Beispiel
In folgendem Codebeispiel wird der Wert von FullDateTimePattern für bestimmte Kulturen angezeigt.
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.FullDateTimePattern)
End Sub 'PrintPattern
End Class 'SamplesDTFI
'This code produces the following output. The question marks take the place of native script characters.
'
' CULTURE PROPERTY VALUE
' en-US dddd, MMMM dd, yyyy h:mm:ss tt
' ja-JP yyyy'?'M'?'d'?' H:mm:ss
' fr-FR dddd d MMMM yyyy 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.FullDateTimePattern );
}
}
/*
This code produces the following output. The question marks take the place of native script characters.
CULTURE PROPERTY VALUE
en-US dddd, MMMM dd, yyyy h:mm:ss tt
ja-JP yyyy'?'M'?'d'?' H:mm:ss
fr-FR dddd d MMMM yyyy HH:mm:ss
*/
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->FullDateTimePattern );
}
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. The question marks take the place of native script characters.
CULTURE PROPERTY VALUE
en-US dddd, MMMM dd, yyyy h:mm:ss tt
ja-JP yyyy'?'M'?'d'?' H:mm:ss
fr-FR dddd d MMMM yyyy HH:mm:ss
*/
import System.* ;
import System.Globalization.* ;
public class SamplesDTFI
{
public static void main(String[] args)
{
// Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE");
PrintPattern("en-US");
PrintPattern("ja-JP");
PrintPattern("fr-FR");
} //main
public static void PrintPattern(String myCulture)
{
DateTimeFormatInfo myDTFI =
(new CultureInfo(myCulture, false)).get_DateTimeFormat();
Console.WriteLine(" {0} {1}",
myCulture, myDTFI.get_FullDateTimePattern());
} //PrintPattern
} //SamplesDTFI
/*
This code produces the following output.
The question marks take the place of native script characters.
CULTURE PROPERTY VALUE
en-US dddd, MMMM dd, yyyy h:mm:ss tt
ja-JP yyyy'?'M'?'d'?' H:mm:ss
fr-FR dddd d MMMM yyyy HH:mm:ss
*/
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
DateTimeFormatInfo-Klasse
DateTimeFormatInfo-Member
System.Globalization-Namespace