using System.Drawing; namespace DevComponents.SuperGrid.TextMarkup { /// /// Represents a content block interface. /// public interface IBlock { /// /// Gets or sets the bounds of the content block. /// Rectangle Bounds {get;set;} /// /// Gets or sets whether content block is visible. /// bool Visible {get;set;} } }