11 references to PageHeight
PresentationFramework (11)
MS\Internal\PtsHost\FigureHelper.cs (5)
139
value = (structuralCache.CurrentFormatContext.
PageHeight
) * figureLength.Value;
145
value = (structuralCache.CurrentFormatContext.
PageHeight
- pageMargin.Top - pageMargin.Bottom) * figureLength.Value;
183
value = Math.Max(1, Math.Min(value, structuralCache.CurrentFormatContext.
PageHeight
));
188
value = Math.Max(1, Math.Min(value, structuralCache.CurrentFormatContext.
PageHeight
- pageMargin.Top - pageMargin.Bottom));
197
value = structuralCache.CurrentFormatContext.
PageHeight
;
MS\Internal\PtsHost\FigureParagraph.cs (2)
630
maxTotalHeight = StructuralCache.CurrentFormatContext.
PageHeight
;
635
maxTotalHeight = StructuralCache.CurrentFormatContext.
PageHeight
- pageMargin.Top - pageMargin.Bottom;
MS\Internal\PtsHost\FloaterParagraph.cs (2)
208
if (Double.IsInfinity(StructuralCache.CurrentFormatContext.
PageHeight
))
218
dvrAvailable = Math.Min(dvrAvailable, TextDpi.ToTextDpi(StructuralCache.CurrentFormatContext.
PageHeight
));
MS\Internal\PtsHost\StructuralCache.cs (1)
759
internal PTS.FSRECT PageRect { get { return new PTS.FSRECT(new Rect(0, 0, PageWidth,
PageHeight
)); } }
MS\Internal\PtsHost\UIElementParagraph.cs (1)
395
elementHeight = StructuralCache.CurrentFormatContext.
PageHeight
;