Base:
property
Text
System.Windows.Forms.UpDownBase.Text
3 writes to Text
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (2)
72Text = "0"; 743Text = GetNumberText(_currentValue);
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
898_pageCounter.Text = "1";
8 references to Text
System.Windows.Forms (8)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (8)
532if (!string.IsNullOrEmpty(Text) && 533!(Text.Length == 1 && Text == "-")) 537Value = Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16))); 541Value = Constrain(decimal.Parse(Text, CultureInfo.CurrentCulture)); 733if (_currentValueChanged || (!string.IsNullOrEmpty(Text) && 734!(Text.Length == 1 && Text == "-")))