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