1 write to pageSize
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowLayouts.cs (1)
755this.pageSize = paperSize;
13 references to pageSize
System.Workflow.ComponentModel (13)
AuthoringOM\Design\WorkflowLayouts.cs (13)
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)); 383Size printableAreaPerPage = new Size(this.pageSize.Width - (PageMargins.Left + PageMargins.Right), this.pageSize.Height - (PageMargins.Top + PageMargins.Bottom)); 756this.pageSize.Width = Convert.ToInt32(Math.Ceiling(((float)this.pageSize.Width) / this.scaling)); 757this.pageSize.Height = Convert.ToInt32(Math.Ceiling(((float)this.pageSize.Height) / this.scaling)); 781Size viewablePageSize = new Size(this.pageSize.Width - (PageMargins.Left + PageMargins.Right), this.pageSize.Height - (PageMargins.Top + PageMargins.Bottom)); 805pageLocation.X = (column * this.pageSize.Width) + ((column + 1) * PageSeparator.Width); 806pageLocation.Y = (row * this.pageSize.Height) + ((row + 1) * PageSeparator.Height); 813Rectangle pageBounds = new Rectangle(pageLocation, this.pageSize);