28 writes to Value
System.Windows.Forms (10)
winforms\Managed\System\WinForms\NumericUpDown.cs (8)
225Value = Constrain(currentValue); 252Value = Constrain(currentValue); 474Value = newValue; 486Value = Constrain(currentValue); 608Value = Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16))); 611Value = Constrain(Decimal.Parse(Text, CultureInfo.CurrentCulture)); 656Value = DefaultValue; 747Value = newValue;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (2)
1664pageCounter.Value = previewControl.StartPage + 1; 1792pageCounter.Value = previewControl.StartPage + 1;
System.Workflow.ComponentModel (18)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (18)
119this.adjustToScaleInput.Value = this.printDocument.PageSetupData.ScaleFactor; 120this.fitToPagesWideInput.Value = this.printDocument.PageSetupData.PagesWide; 121this.fitToPagesTallInput.Value = this.printDocument.PageSetupData.PagesTall; 194this.headerMarginInput.Value = PrinterUnitToUIUnit(this.printDocument.PageSetupData.HeaderMargin); 230this.footerMarginInput.Value = PrinterUnitToUIUnit(this.printDocument.PageSetupData.FooterMargin); 426this.marginsRightInput.Value = new decimal(new int[] { 443this.marginsBottomInput.Value = new decimal(new int[] { 480this.marginsTopInput.Value = new decimal(new int[] { 497this.marginsLeftInput.Value = new decimal(new int[] { 558this.fitToPagesTallInput.Value = new decimal(new int[] { 579this.fitToPagesWideInput.Value = new decimal(new int[] { 600this.adjustToScaleInput.Value = new decimal(new int[] { 751this.footerMarginInput.Value = new decimal(new int[] { 837this.headerMarginInput.Value = new decimal(new int[] { 1214this.marginsLeftInput.Value = PrinterUnitToUIUnit(margins.Left); 1215this.marginsRightInput.Value = PrinterUnitToUIUnit(margins.Right); 1216this.marginsTopInput.Value = PrinterUnitToUIUnit(margins.Top); 1217this.marginsBottomInput.Value = PrinterUnitToUIUnit(margins.Bottom);
13 references to Value
System.Windows.Forms (4)
winforms\Managed\System\WinForms\NumericUpDown.cs (3)
397/// Occurs when the <see cref='System.Windows.Forms.NumericUpDown.Value'/> property has been changed in some way. 682/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Value'/> property should be persisted.</para> 685return !Value.Equals(NumericUpDown.DefaultValue);
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1783int pageNum = ((int)pageCounter.Value) - 1;
System.Workflow.ComponentModel (9)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (9)
966this.printDocument.PageSetupData.ScaleFactor = (int)this.adjustToScaleInput.Value; 967this.printDocument.PageSetupData.PagesWide = (int)this.fitToPagesWideInput.Value; 968this.printDocument.PageSetupData.PagesTall = (int)this.fitToPagesTallInput.Value; 988this.printDocument.PageSetupData.HeaderMargin = UIUnitToPrinterUnit(this.headerMarginInput.Value); 1000this.printDocument.PageSetupData.FooterMargin = UIUnitToPrinterUnit(this.footerMarginInput.Value); 1223UIUnitToPrinterUnit(this.marginsLeftInput.Value), 1224UIUnitToPrinterUnit(this.marginsRightInput.Value), 1225UIUnitToPrinterUnit(this.marginsTopInput.Value), 1226UIUnitToPrinterUnit(this.marginsBottomInput.Value));