16 references to rowColumns
System.Workflow.ComponentModel (16)
AuthoringOM\Design\WorkflowLayouts.cs (16)
372
maxSize.Width = (this.
rowColumns
.Width * this.pageSize.Width) + ((this.
rowColumns
.Width + 1) * (PageSeparator.Width));
373
maxSize.Height = (this.
rowColumns
.Height * this.pageSize.Height) + ((this.
rowColumns
.Height + 1) * (PageSeparator.Height));
384
Size totalPrintableArea = new Size(this.
rowColumns
.Width * printableAreaPerPage.Width, this.
rowColumns
.Height * printableAreaPerPage.Height);
787
this.
rowColumns
.Width = rootDesignerSize.Width / viewablePageSize.Width;
788
this.
rowColumns
.Width += ((rootDesignerSize.Width % viewablePageSize.Width) > 1) ? 1 : 0;
789
this.
rowColumns
.Width = Math.Max(1, this.
rowColumns
.Width);
792
this.
rowColumns
.Height = rootDesignerSize.Height / viewablePageSize.Height;
793
this.
rowColumns
.Height += ((rootDesignerSize.Height % viewablePageSize.Height) > 1) ? 1 : 0;
794
this.
rowColumns
.Height = Math.Max(1, this.
rowColumns
.Height);
800
for (int row = 0; row < this.
rowColumns
.Height; row++)
802
for (int column = 0; column < this.
rowColumns
.Width; column++)