RaUI/Source/ryControls/HtmlRenderer/Adapters/Entities/RHeader.cs

31 lines
596 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
{
/// <summary>
///
/// </summary>
public struct RHeader
{
private double _Height;
/// <summary>
///
/// </summary>
public double Height
{
get { return _Height; }
}
/// <summary>
///
/// </summary>
/// <param name="height"></param>
public RHeader(double height=0)
{
_Height = height;
}
}
}