IRenderingContext
Represents the typedef for any rendering context.
This is shown is the base interface for all rendering
contexts.
using AngleSharp.Attributes;
using AngleSharp.Dom.Html;
namespace AngleSharp.Dom.Media
{
[DomName("RenderingContext")]
public interface IRenderingContext
{
string ContextId { get; }
bool IsFixed { get; }
IHtmlCanvasElement Host { get; }
byte[] ToImage(string type);
}
}