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"; 749Text = 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)
538if (!string.IsNullOrEmpty(Text) && 539!(Text.Length == 1 && Text == "-")) 543Value = Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16))); 547Value = Constrain(decimal.Parse(Text, CultureInfo.CurrentCulture)); 739if (_currentValueChanged || (!string.IsNullOrEmpty(Text) && 740!(Text.Length == 1 && Text == "-")))