// "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;
namespace TheArtOfDev.HtmlRenderer.Core.Entities
{
///
/// Raised when html renderer requires refresh of the control hosting (invalidation and re-layout).
/// It can happen if some async event has occurred that requires re-paint and re-layout of the html.
/// Example: async download of image is complete.
///
public sealed class HtmlRefreshEventArgs : EventArgs
{
///
/// is re-layout is required for the refresh
///
private readonly bool _layout;
///
/// Init.
///
/// is re-layout is required for the refresh
public HtmlRefreshEventArgs(bool layout)
{
_layout = layout;
}
///
/// is re-layout is required for the refresh
///
public bool Layout
{
get { return _layout; }
}
///
///
///
///
public override string ToString()
{
return string.Format("Layout: {0}", _layout);
}
}
}