IHtmlDialogElement
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers
Repesents the dialog HTML element.
using AngleSharp.Attributes;
using AngleSharp.Dom.Css;
using AngleSharp.Dom.Events;
namespace AngleSharp.Dom.Html
{
[DomName("HTMLDialogElement")]
public interface IHtmlDialogElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers
{
[DomName("open")]
bool Open { get; set; }
[DomName("returnValue")]
string ReturnValue { get; set; }
[DomName("show")]
void Show(IElement anchor = null);
[DomName("showModal")]
void ShowModal(IElement anchor = null);
[DomName("close")]
void Close(string returnValue = null);
}
}