// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
namespace FlaxEngine.GUI
{
///
/// The text block.
///
public struct TextBlock
{
///
/// The text range.
///
public TextRange Range;
///
/// The text style.
///
public TextBlockStyle Style;
///
/// The text location and size.
///
public Rectangle Bounds;
///
/// The custom tag.
///
public object Tag;
}
}