Base:
property
Text
System.Windows.Forms.UpDownBase.Text
3 writes to Text
System.Windows.Forms (3)
winforms\Managed\System\WinForms\NumericUpDown.cs (2)
100Text = "0"; 794Text = GetNumberText(currentValue);
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1489pageCounter.Text = "1";
8 references to Text
System.Windows.Forms (8)
winforms\Managed\System\WinForms\NumericUpDown.cs (8)
605if (!string.IsNullOrEmpty(Text) && 606!(Text.Length == 1 && Text == "-")) { 608Value = Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16))); 611Value = Constrain(Decimal.Parse(Text, CultureInfo.CurrentCulture)); 784if (currentValueChanged || (!string.IsNullOrEmpty(Text) && 785!(Text.Length == 1 && Text == "-"))) {