using System;
using System.Drawing;
#if TREEGX
namespace DevComponents.Tree.TextMarkup
#elif DOTNETBAR
namespace DevComponents.UI.ContentManager
#endif
{
///
/// 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;}
}
}