Version

FormatProvider Property (UltraDateTimeEditor)

Gets/sets the format information used by the control.
Syntax
'Declaration
 
Public Property FormatProvider As IFormatProvider
public IFormatProvider FormatProvider {get; set;}
Remarks

By default, the UltraDateTimeEditor control uses the system's CurrentCulture. The FormatProvider property allows the control to be set to use any Culture supported by the .NET runtime.

Example
This example uses the control's FormatProvider property to set the formatting information to a specific culture (Japanese), rather than the system's current culture.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinEditors

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim provider As IFormatProvider = System.Globalization.CultureInfo.CreateSpecificCulture("ja-JP")
        Me.UltraDateTimeEditor1.FormatProvider = provider
        Me.UltraNumericEditor1.FormatProvider = provider
        Me.UltraCurrencyEditor1.FormatProvider = provider
    End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinEditors;

		private void button1_Click(object sender, System.EventArgs e)
		{
			IFormatProvider provider = System.Globalization.CultureInfo.CreateSpecificCulture( "ja-JP" );
			this.ultraDateTimeEditor1.FormatProvider = provider;
			this.ultraNumericEditor1.FormatProvider = provider;
			this.ultraCurrencyEditor1.FormatProvider = provider;
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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