70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public struct RMargin
|
|||
|
|
{
|
|||
|
|
private double _Top;
|
|||
|
|
private double _Bottom;
|
|||
|
|
private double _Left;
|
|||
|
|
private double _Right;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public double Top
|
|||
|
|
{
|
|||
|
|
get { return _Top; }
|
|||
|
|
set { _Top = value; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public double Bottom
|
|||
|
|
{
|
|||
|
|
get { return _Bottom; }
|
|||
|
|
set { _Bottom = value; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public double Left
|
|||
|
|
{
|
|||
|
|
get { return _Left; }
|
|||
|
|
set { _Left = value; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public double Right
|
|||
|
|
{
|
|||
|
|
get { return _Right; }
|
|||
|
|
set { _Right = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="top"></param>
|
|||
|
|
/// <param name="bottom"></param>
|
|||
|
|
/// <param name="left"></param>
|
|||
|
|
/// <param name="right"></param>
|
|||
|
|
public RMargin(double top=0,
|
|||
|
|
double bottom = 0,
|
|||
|
|
double left = 0,
|
|||
|
|
double right = 0
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
_Top = top;
|
|||
|
|
_Bottom = bottom;
|
|||
|
|
_Left = left;
|
|||
|
|
_Right = right;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|