1 write to currentPrintablePage
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowPrinting.cs (1)
94
this.
currentPrintablePage
= Point.Empty;
12 references to currentPrintablePage
System.Workflow.ComponentModel (12)
AuthoringOM\Design\WorkflowPrinting.cs (12)
117
if (this.
currentPrintablePage
.IsEmpty)
148
Point pageOffset = new Point(this.
currentPrintablePage
.X * printableArea.Width - this.workflowAlignment.X, this.
currentPrintablePage
.Y * printableArea.Height - this.workflowAlignment.Y);
161
Rectangle viewPort = new Rectangle(this.
currentPrintablePage
.X * viewPortSize.Width - scaledAlignment.X, this.
currentPrintablePage
.Y * viewPortSize.Height - scaledAlignment.Y, viewPortSize.Width, viewPortSize.Height);
178
headerFooterData.CurrentPage = this.
currentPrintablePage
.X + this.
currentPrintablePage
.Y * this.totalPrintablePages.X + 1;
369
this.
currentPrintablePage
.X++;
370
if (this.
currentPrintablePage
.X < this.totalPrintablePages.X)
374
this.
currentPrintablePage
.X = 0;
375
this.
currentPrintablePage
.Y++;
376
return (this.
currentPrintablePage
.Y < this.totalPrintablePages.Y);