31 lines
596 B
C#
31 lines
596 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|