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