1 write to PageMargins
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowLayouts.cs (1)
769
PageMargins
= margins;
18 references to PageMargins
System.Workflow.ComponentModel (18)
AuthoringOM\Design\WorkflowLayouts.cs (18)
383
Size printableAreaPerPage = new Size(this.pageSize.Width - (
PageMargins
.Left +
PageMargins
.Right), this.pageSize.Height - (
PageMargins
.Top +
PageMargins
.Bottom));
770
PageMargins
.Left = Convert.ToInt32((float)
PageMargins
.Left / this.scaling);
771
PageMargins
.Right = Convert.ToInt32((float)
PageMargins
.Right / this.scaling);
772
PageMargins
.Top = Convert.ToInt32((float)
PageMargins
.Top / this.scaling);
773
PageMargins
.Bottom = Convert.ToInt32((float)
PageMargins
.Bottom / this.scaling);
781
Size viewablePageSize = new Size(this.pageSize.Width - (
PageMargins
.Left +
PageMargins
.Right), this.pageSize.Height - (
PageMargins
.Top +
PageMargins
.Bottom));
809
viewablePageLocation.X = pageLocation.X +
PageMargins
.Left;
810
viewablePageLocation.Y = pageLocation.Y +
PageMargins
.Top;