1 write to ViewablePageBounds
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowLayouts.cs (1)
931
this.
ViewablePageBounds
= viewablePageBounds;
21 references to ViewablePageBounds
System.Workflow.ComponentModel (21)
AuthoringOM\Design\WorkflowLayouts.cs (21)
404
if (pageLayoutData.
ViewablePageBounds
.Contains(logicalCoOrd))
419
intersectedPhysicalViewPort.Intersect(pageLayoutData.
ViewablePageBounds
);
422
Point deltaLocation = new Point(intersectedPhysicalViewPort.X - pageLayoutData.
ViewablePageBounds
.X, intersectedPhysicalViewPort.Y - pageLayoutData.
ViewablePageBounds
.Y);
424
Size deltaSize = new Size(pageLayoutData.
ViewablePageBounds
.Width - intersectedPhysicalViewPort.Width, pageLayoutData.
ViewablePageBounds
.Height - intersectedPhysicalViewPort.Height);
465
insersectedPhysicalViewPort.X = pageLayoutData.
ViewablePageBounds
.X + deltaLocation.X;
466
insersectedPhysicalViewPort.Y = pageLayoutData.
ViewablePageBounds
.Y + deltaLocation.Y;
468
insersectedPhysicalViewPort.Width = pageLayoutData.
ViewablePageBounds
.Width - deltaLocation.X;
471
insersectedPhysicalViewPort.Height = pageLayoutData.
ViewablePageBounds
.Height - deltaLocation.Y;
488
Point delta = new Point(logicalPoint.X - pageLayoutData.
ViewablePageBounds
.Left, logicalPoint.Y - pageLayoutData.
ViewablePageBounds
.Top);
504
logicalPoint = new Point(pageLayoutData.
ViewablePageBounds
.Left + delta.X, pageLayoutData.
ViewablePageBounds
.Top + delta.Y);
662
bitmapDrawingPoint.X = pageLayoutData.
ViewablePageBounds
.X + Math.Abs(pageLayoutData.LogicalPageBounds.X - intersectedViewPort.X);
663
bitmapDrawingPoint.Y = pageLayoutData.
ViewablePageBounds
.Y + Math.Abs(pageLayoutData.LogicalPageBounds.Y - intersectedViewPort.Y);
690
graphics.DrawRectangle(ambientTheme.ForegroundPen, pageLayoutData.
ViewablePageBounds
.Left - 3, pageLayoutData.
ViewablePageBounds
.Top - 3, pageLayoutData.
ViewablePageBounds
.Width + 6, pageLayoutData.
ViewablePageBounds
.Height + 6);
694
headerFooterData.PageBoundsWithoutMargin = pageLayoutData.
ViewablePageBounds
;