8 changed files with 86 additions and 2 deletions
@ -0,0 +1,21 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="FormattedTextLine.cs" company="Steven Kirk">
|
|||
// Copyright 2013 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Media |
|||
{ |
|||
public class FormattedTextLine |
|||
{ |
|||
public FormattedTextLine(int length, double height) |
|||
{ |
|||
this.Length = length; |
|||
this.Height = height; |
|||
} |
|||
|
|||
public int Length { get; private set; } |
|||
|
|||
public double Height { get; private set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue