DateTimeFormatInfo.ShortTimePattern Właściwość

Definicja

Pobiera lub ustawia ciąg formatu niestandardowego dla wartości krótkiego czasu.

public:
 property System::String ^ ShortTimePattern { System::String ^ get(); void set(System::String ^ value); };
public string ShortTimePattern { get; set; }
member this.ShortTimePattern : string with get, set
Public Property ShortTimePattern As String

Wartość właściwości

String

Ciąg formatu niestandardowego dla wartości krótkiej czasu.

Wyjątki

Właściwość jest ustawiana na null wartość .

Właściwość jest ustawiana, a DateTimeFormatInfo obiekt jest tylko do odczytu.

Przykłady

W poniższym przykładzie jest ShortTimePattern wyświetlana wartość kilku kultur.

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->ShortTimePattern );
}

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 tt
ja-JP     H:mm
fr-FR     HH:mm

*/
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.ShortTimePattern );
   }
}

/*
This code produces the following output.

 CULTURE    PROPERTY VALUE
  en-US     h:mm tt
  ja-JP     H:mm
  fr-FR     HH:mm

*/
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.ShortTimePattern)

   End Sub

End Class

'This code produces the following output.
'
' CULTURE    PROPERTY VALUE
'  en-US     h:mm tt
'  ja-JP     H:mm
'  fr-FR     HH:mm
'

Uwagi

Właściwość definiuje specyficzny dla kultury format ciągów daty, które są zwracane przez wywołania metod i oraz złożone ciągi formatu, które są dostarczane jako ciąg formatu standardowego ShortTimePattern DateTime.ToString DateTimeOffset.ToString "t".

Zalecamy ustawienie separatora godziny we wzorcu godziny krótkiej na dokładny ciąg zamiast używania symbolu zastępczego separatora godziny. Aby na przykład uzyskać wzorzec h-mm-ss, ustaw wzorzec godziny krótkiej na "h-mm-ss".

Dotyczy

Zobacz też