32 references to RowSize
PresentationFramework (32)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (8)
1654xOffset = (centerWidth - currentRow.RowSize.Width) / 2.0 + 2431rowWidth = pivotRow.RowSize.Width - pivotRow.PageCount * HorizontalPageSpacing; 2438double rowHeight = pivotRow.RowSize.Height - VerticalPageSpacing; 2749Math.Max(0.0, (ExtentWidth - row.RowSize.Width) / 2.0) : 0.0; 2955if (newRow.RowSize.Width != _savedPivotRow.RowSize.Width || 2956newRow.RowSize.Height != _savedPivotRow.RowSize.Height)
src\Framework\MS\Internal\Documents\RowCache.cs (24)
341double rowHeight = Math.Round(_rowCache[i].RowSize.Height, _findOffsetPrecision); 494_extentWidth = Math.Max(currentRow.RowSize.Width, _extentWidth); 496currentOffset += currentRow.RowSize.Height; 497_extentHeight += currentRow.RowSize.Height; 696double pivotRowWidth = pivotRow.RowSize.Width; 786newRow.RowSize.Width + pageSize.Width > rowWidth ) 798newRow.RowSize.Width + pageSize.Width > rowWidth ) 949lastRow.RowSize.Width + pageSize.Width <= pivotRow.RowSize.Width) 991} while (newRow.RowSize.Width + pageSize.Width <= pivotRow.RowSize.Width 1015_extentWidth = newRow.RowSize.Width; 1023newRow.VerticalOffset = lastRow.VerticalOffset + lastRow.RowSize.Height; 1026_extentWidth = Math.Max(newRow.RowSize.Width, _extentWidth); 1030_extentHeight += newRow.RowSize.Height; 1118if (oldRowInfo.RowSize.Height != newRow.RowSize.Height) 1122double delta = newRow.RowSize.Height - oldRowInfo.RowSize.Height; 1136if (newRow.RowSize.Width > _extentWidth) 1138_extentWidth = newRow.RowSize.Width; 1144else if (oldRowInfo.RowSize.Width != newRow.RowSize.Width) 1154_extentWidth = Math.Max(row.RowSize.Width, _extentWidth);