namespace DevComponents.Charts.TextMarkup
{
    /// 
    /// Represents a extended content block interface for advanced layout information.
    /// 
    public interface IBlockExtended : IBlock
    {
        /// 
        /// Gets whether element is block level element.
        /// 
        bool IsBlockElement { get;}
        /// 
        /// Gets whether new line is required after the element.
        /// 
        bool IsNewLineAfterElement { get;}
        /// 
        /// Gets whether element can be on new line.
        /// 
        bool CanStartNewLine { get; }
    }
}