Ooui-tws-port/Ooui/Iframe.cs

19 lines
368 B
C#
Raw Normal View History

namespace Ooui
{
public class Iframe : Element
{
2018-02-02 02:43:23 +00:00
public string Source
{
2018-02-02 02:43:23 +00:00
get => GetStringAttribute ("src", null);
set => SetAttributeProperty ("src", value);
}
2018-02-02 02:43:23 +00:00
public Iframe ()
: base ("iframe")
{
}
2019-03-21 21:23:36 +00:00
protected override bool HtmlNeedsFullEndElement => true;
}
}