28 writes to Value
System.Windows.Forms (10)
winforms\Managed\System\WinForms\NumericUpDown.cs (8)
225
Value
= Constrain(currentValue);
252
Value
= Constrain(currentValue);
474
Value
= newValue;
486
Value
= Constrain(currentValue);
608
Value
= Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16)));
611
Value
= Constrain(Decimal.Parse(Text, CultureInfo.CurrentCulture));
656
Value
= DefaultValue;
747
Value
= newValue;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (2)
1664
pageCounter.
Value
= previewControl.StartPage + 1;
1792
pageCounter.
Value
= previewControl.StartPage + 1;
System.Workflow.ComponentModel (18)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (18)
119
this.adjustToScaleInput.
Value
= this.printDocument.PageSetupData.ScaleFactor;
120
this.fitToPagesWideInput.
Value
= this.printDocument.PageSetupData.PagesWide;
121
this.fitToPagesTallInput.
Value
= this.printDocument.PageSetupData.PagesTall;
194
this.headerMarginInput.
Value
= PrinterUnitToUIUnit(this.printDocument.PageSetupData.HeaderMargin);
230
this.footerMarginInput.
Value
= PrinterUnitToUIUnit(this.printDocument.PageSetupData.FooterMargin);
426
this.marginsRightInput.
Value
= new decimal(new int[] {
443
this.marginsBottomInput.
Value
= new decimal(new int[] {
480
this.marginsTopInput.
Value
= new decimal(new int[] {
497
this.marginsLeftInput.
Value
= new decimal(new int[] {
558
this.fitToPagesTallInput.
Value
= new decimal(new int[] {
579
this.fitToPagesWideInput.
Value
= new decimal(new int[] {
600
this.adjustToScaleInput.
Value
= new decimal(new int[] {
751
this.footerMarginInput.
Value
= new decimal(new int[] {
837
this.headerMarginInput.
Value
= new decimal(new int[] {
1214
this.marginsLeftInput.
Value
= PrinterUnitToUIUnit(margins.Left);
1215
this.marginsRightInput.
Value
= PrinterUnitToUIUnit(margins.Right);
1216
this.marginsTopInput.
Value
= PrinterUnitToUIUnit(margins.Top);
1217
this.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>
685
return !
Value
.Equals(NumericUpDown.DefaultValue);
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1783
int pageNum = ((int)pageCounter.
Value
) - 1;
System.Workflow.ComponentModel (9)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (9)
966
this.printDocument.PageSetupData.ScaleFactor = (int)this.adjustToScaleInput.
Value
;
967
this.printDocument.PageSetupData.PagesWide = (int)this.fitToPagesWideInput.
Value
;
968
this.printDocument.PageSetupData.PagesTall = (int)this.fitToPagesTallInput.
Value
;
988
this.printDocument.PageSetupData.HeaderMargin = UIUnitToPrinterUnit(this.headerMarginInput.
Value
);
1000
this.printDocument.PageSetupData.FooterMargin = UIUnitToPrinterUnit(this.footerMarginInput.
Value
);
1223
UIUnitToPrinterUnit(this.marginsLeftInput.
Value
),
1224
UIUnitToPrinterUnit(this.marginsRightInput.
Value
),
1225
UIUnitToPrinterUnit(this.marginsTopInput.
Value
),
1226
UIUnitToPrinterUnit(this.marginsBottomInput.
Value
));