13 references to totalPrintablePages
System.Workflow.ComponentModel (13)
AuthoringOM\Design\WorkflowPrinting.cs (13)
178headerFooterData.CurrentPage = this.currentPrintablePage.X + this.currentPrintablePage.Y * this.totalPrintablePages.X + 1; 179headerFooterData.TotalPages = this.totalPrintablePages.X * this.totalPrintablePages.Y; 346this.totalPrintablePages.X = Convert.ToInt32(Math.Ceiling((this.scaling * (float)rootDesignerSize.Width) / (float)printableArea.Width)); 347this.totalPrintablePages.X = Math.Max(this.totalPrintablePages.X, 1); 348this.totalPrintablePages.Y = Convert.ToInt32(Math.Ceiling((this.scaling * (float)rootDesignerSize.Height) / (float)printableArea.Height)); 349this.totalPrintablePages.Y = Math.Max(this.totalPrintablePages.Y, 1); 355this.workflowAlignment.X = (int)(((float)this.totalPrintablePages.X * (float)printableArea.Width / this.scaling - (float)rootDesignerSize.Width) / 2.0f * this.scaling); 358this.workflowAlignment.Y = (int)(((float)this.totalPrintablePages.Y * (float)printableArea.Height / this.scaling - (float)rootDesignerSize.Height) / 2.0f * this.scaling); 370if (this.currentPrintablePage.X < this.totalPrintablePages.X) 376return (this.currentPrintablePage.Y < this.totalPrintablePages.Y);