| File: System\Windows\Media\textformatting\TextEndOfParagraph.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // // Contents: Implementation of text paragraph break control // // Spec: Text Formatting API.doc // // namespace System.Windows.Media.TextFormatting { /// <summary> /// Specialized line break control used to mark the end of a paragraph /// </summary> public class TextEndOfParagraph : TextEndOfLine { #region Constructors /// <summary> /// Construct a paragraph break run /// </summary> /// <param name="length">number of characters</param> public TextEndOfParagraph(int length) : base(length) {} /// <summary> /// Construct a paragraph break run /// </summary> /// <param name="length">number of characters</param> /// <param name="textRunProperties">linebreak text run properties</param> public TextEndOfParagraph( int length, TextRunProperties textRunProperties ) : base( length, textRunProperties ) {} #endregion } }