File: MS\Internal\PtsHost\ListItemParagraph.cs
Web Access
Project: src\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.
// See the LICENSE file in the project root for more information.
 
 
//
// Description: ListItemParagraph represents a single list item.
//
 
using System;
using System.Windows;
using System.Windows.Documents;
using MS.Internal.Text;
 
namespace MS.Internal.PtsHost
{
    /// <summary>
    /// ListItemParagraph represents a single list item.
    /// </summary>
    internal sealed class ListItemParagraph : ContainerParagraph
    {
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="element">
        /// Element associated with paragraph.
        /// </param>
        /// <param name="structuralCache">
        /// Content's structural cache
        /// </param>
        internal ListItemParagraph(DependencyObject element, StructuralCache structuralCache)
            : base(element, structuralCache)
        {
        }
    }
}