using System.Drawing; namespace DevComponents.SuperGrid.TextMarkup { /// /// Represents interface for block layout. /// public interface IContentLayout { /// /// Performs layout of the content block. /// /// Container bounds to layout content blocks in. /// Content blocks to layout. /// Block layout manager that resizes the content blocks. /// The bounds of the content blocks within the container bounds. Rectangle Layout(Rectangle containerBounds, IBlock[] contentBlocks, BlockLayoutManager blockLayout); } }