Having trouble getting help?
Contact Support
Contact Support
Display Settings in Windows Forms Percent TextBox
4 Feb 20251 minute to read
This section discusses the display settings of the PercentTextBox control.
The PercentTextBox provides a list of properties to set the display characteristics of the percentage.
- PercentDecimalDigits
- PercentDecimalSeparator
- PercentGroupSeparator
- PercentGroupSizes
- PercentNegativePattern
- NegativeSign
- PercentPositivePattern
- PercentSymbol
The grouping size of the percent digits can be set using the Int32 Collection Editor which will be displayed on selecting the PercentGroupSizes property in the property grid.
this.percentTextBox1.PercentDecimalDigits = 3;
this.percentTextBox1.PercentDecimalSeparator = ".";
this.percentTextBox1.PercentGroupSeparator = ",";
this.percentTextBox1.PercentGroupSizes = new int[] {5};
this.percentTextBox1.PercentNegativePattern = 2;
this.percentTextBox1.NegativeSign = "-";
this.percentTextBox1.PercentPositivePattern = 2;
this.percentTextBox1.PercentSymbol = "%";
Me.percentTextBox1.PercentDecimalDigits = 3
Me.percentTextBox1.PercentDecimalSeparator = "."
Me.percentTextBox1.PercentGroupSeparator = ","
Me.percentTextBox1.PercentGroupSizes = New Integer() {5}
Me.percentTextBox1.PercentNegativePattern = 2
Me.percentTextBox1.NegativeSign = "-";
Me.percentTextBox1.PercentPositivePattern = 2
Me.percentTextBox1.PercentSymbol = "%"
The following screen shot illustrates the above settings.
A sample which demonstrates the Display Settings of PercentTextBox control is available in the below sample installation path.
…\My Documents\Syncfusion\EssentialStudio\Version Number\Windows\Tools.Windows\Samples\Advanced Editor Functions\ActionGroupingDemo