Gets date time full format from single character format.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Gets date time full format from single character format.")>
Public Function GetFullFormat( _
ByVal format As System.String _
) As System.String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DateTimeFormatInfoWrapper
Dim format As System.String
Dim value As System.String
value = instance.GetFullFormat(format) |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Gets date time full format from single character format.")]
public System.string GetFullFormat(
System.string format
) |
Delphi | |
---|
public function GetFullFormat(
format: System.String
): System.String; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Gets date time full format from single character format.")
public function GetFullFormat(
format : System.String
) : System.String; |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Gets date time full format from single character format.")]
public: System.string* GetFullFormat(
System.string* format
) |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Gets date time full format from single character format.")]
public:
System.String^ GetFullFormat(
System.String^ format
) |
Parameters
- format
- A single character format
Return Value
The full format.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also