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