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