| File: System\Windows\Documents\FixedSOMPageElement.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*++ Description: Abstract class that provides a common base class for all containers directly accessible from the page level --*/ namespace System.Windows.Documents { internal abstract class FixedSOMPageElement :FixedSOMContainer { //-------------------------------------------------------------------- // // Constructors // //--------------------------------------------------------------------- #region Constructors public FixedSOMPageElement(FixedSOMPage page) { _page = page; } #endregion Constructors //-------------------------------------------------------------------- // // Public properties // //--------------------------------------------------------------------- #region Public properties public FixedSOMPage FixedSOMPage { get { return _page; } } public abstract bool IsRTL { get; } #endregion Constructors //-------------------------------------------------------------------- // // Protected Fields // //--------------------------------------------------------------------- #region Protected Fields protected FixedSOMPage _page; #endregion Protected Fields } }