Many new plays

This commit is contained in:
2020-02-18 14:57:55 +01:00
parent ef501d30ae
commit 2467cad2a1
19 changed files with 2334 additions and 24 deletions

View File

@ -0,0 +1,31 @@
using System.Windows;
namespace LsBricks.ElementMVVM.Types
{
/// <summary>
/// A component of the symbol
/// </summary>
public readonly struct TextComponent
{
/// <summary>
/// Constructor
/// </summary>
/// <param name="text"></param>
/// <param name="style"></param>
public TextComponent(string text, BaselineAlignment style = BaselineAlignment.Baseline)
{
Text = text;
Style = style;
}
/// <summary>
/// Text of the symbol component
/// </summary>
public readonly string Text;
/// <summary>
/// Style of the symbol component
/// </summary>
public readonly BaselineAlignment Style;
}
}