62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
|
|
// "Therefore those skilled at the unorthodox
|
||
|
|
// are infinite as heaven and earth,
|
||
|
|
// inexhaustible as the great rivers.
|
||
|
|
// When they come to an end,
|
||
|
|
// they begin again,
|
||
|
|
// like the days and months;
|
||
|
|
// they die and are reborn,
|
||
|
|
// like the four seasons."
|
||
|
|
//
|
||
|
|
// - Sun Tsu,
|
||
|
|
// "The Art of War"
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using TheArtOfDev.HtmlRenderer.Adapters.Entities;
|
||
|
|
|
||
|
|
namespace TheArtOfDev.HtmlRenderer.Core.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Raised when Html Renderer request scroll to specific location.<br/>
|
||
|
|
/// This can occur on document anchor click.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class HtmlScrollEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// the location to scroll to
|
||
|
|
/// </summary>
|
||
|
|
private readonly RPoint _location;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Init.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="location">the location to scroll to</param>
|
||
|
|
public HtmlScrollEventArgs(RPoint location)
|
||
|
|
{
|
||
|
|
_location = location;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// the x location to scroll to
|
||
|
|
/// </summary>
|
||
|
|
public double X
|
||
|
|
{
|
||
|
|
get { return _location.X; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// the x location to scroll to
|
||
|
|
/// </summary>
|
||
|
|
public double Y
|
||
|
|
{
|
||
|
|
get { return _location.Y; }
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
/// <returns></returns>
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return string.Format("Location: {0}", _location);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|