// "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
{
///
/// Raised when Html Renderer request scroll to specific location.
/// This can occur on document anchor click.
///
public sealed class HtmlScrollEventArgs : EventArgs
{
///
/// the location to scroll to
///
private readonly RPoint _location;
///
/// Init.
///
/// the location to scroll to
public HtmlScrollEventArgs(RPoint location)
{
_location = location;
}
///
/// the x location to scroll to
///
public double X
{
get { return _location.X; }
}
///
/// the x location to scroll to
///
public double Y
{
get { return _location.Y; }
}
///
///
///
///
public override string ToString()
{
return string.Format("Location: {0}", _location);
}
}
}