1 write to _currentFormatInfo
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\StructuralCache.cs (1)
733_currentFormatInfo = _documentFormatInfoStack.Pop();
11 references to _currentFormatInfo
PresentationFramework (11)
src\Framework\MS\Internal\PtsHost\StructuralCache.cs (11)
720_documentFormatInfoStack.Push(_currentFormatInfo); 722_currentFormatInfo.PageSize = pageSize; 723_currentFormatInfo.PageMargin = pageMargin; 724_currentFormatInfo.IncrementalUpdate = incrementalUpdate; 725_currentFormatInfo.FinitePage = finitePage; 739internal double PageHeight { get { return _currentFormatInfo.PageSize.Height; } } 744internal double PageWidth { get { return _currentFormatInfo.PageSize.Width; } } 749internal Size PageSize { get { return _currentFormatInfo.PageSize; } } 754internal Thickness PageMargin { get { return _currentFormatInfo.PageMargin; } } 759internal bool IncrementalUpdate { get { return _currentFormatInfo.IncrementalUpdate; } } 764internal bool FinitePage { get { return _currentFormatInfo.FinitePage; } }