2 writes to PageSeparator
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowLayouts.cs (2)
764
PageSeparator
= (separator != null) ? (Size)separator : PrintPreviewLayout.DefaultPageSeparator;
766
PageSeparator
= new Size(Convert.ToInt32(Math.Ceiling(((float)PageSeparator.Width) / this.scaling)), Convert.ToInt32(Math.Ceiling(((float)PageSeparator.Height) / this.scaling)));
6 references to PageSeparator
System.Workflow.ComponentModel (6)
AuthoringOM\Design\WorkflowLayouts.cs (6)
372
maxSize.Width = (this.rowColumns.Width * this.pageSize.Width) + ((this.rowColumns.Width + 1) * (
PageSeparator
.Width));
373
maxSize.Height = (this.rowColumns.Height * this.pageSize.Height) + ((this.rowColumns.Height + 1) * (
PageSeparator
.Height));
766
PageSeparator = new Size(Convert.ToInt32(Math.Ceiling(((float)
PageSeparator
.Width) / this.scaling)), Convert.ToInt32(Math.Ceiling(((float)
PageSeparator
.Height) / this.scaling)));
805
pageLocation.X = (column * this.pageSize.Width) + ((column + 1) *
PageSeparator
.Width);
806
pageLocation.Y = (row * this.pageSize.Height) + ((row + 1) *
PageSeparator
.Height);