Name

html

Synopsis

LZX: html
JavaScript: html
Type: Class
Access: public
Topic: Extensions.General
Declared in: lps/components/extensions/html.lzx

Superclass Chain

node (LzNode) » html

Known Subclasses

Details

Properties (11)

appendto
<attribute name="appendto" value="null" />
public var appendto;
framename
<attribute name="framename" type="string" value="" />
public var framename : String;
heightoffset
<attribute name="heightoffset" type="number" value="0" />
public var heightoffset : Number;
iframe
<attribute name="iframe" value="null" />
public var iframe;
loading
<attribute name="loading" type="boolean" value="false" />
public var loading : Boolean;
src
<attribute name="src" type="text" />
public var src : String;
target
<attribute name="target" value="null" />
public var target;
visible
<attribute name="visible" type="boolean" value="true" />
public var visible : Boolean;
widthoffset
<attribute name="widthoffset" type="number" value="0" />
public var widthoffset : Number;
xoffset
<attribute name="xoffset" type="number" value="0" />
public var xoffset : Number;
yoffset
<attribute name="yoffset" type="number" value="0" />
public var yoffset : Number;

Methods (5)

bringToFront()
<method name="bringToFront" />
public function bringToFront();
__gotload()
<method name="__gotload" />
public function __gotload();
setSrc()
<method name="setSrc" args="s" />
public function setSrc(s);
setTarget()
<method name="setTarget" args="t" />
public function setTarget(t);
setVisible()
<method name="setVisible" args="v" />
public function setVisible(v);

Events (2)

onload
<attribute name="onload" />
public event onload;
onsrc
<attribute name="onsrc" />
public event onsrc;

LZX Synopsis

<class name="html" extends=" LzNode ">
  <attribute name=" appendto " value="null" />
  <attribute name=" framename " type="string" value="" />
  <attribute name=" heightoffset " type="number" value="0" />
  <attribute name=" iframe " value="null" />
  <attribute name=" loading " type="boolean" value="false" />
  <attribute name=" src " type="text" />
  <attribute name=" target " value="null" />
  <attribute name=" visible " type="boolean" value="true" />
  <attribute name=" widthoffset " type="number" value="0" />
  <attribute name=" xoffset " type="number" value="0" />
  <attribute name=" yoffset " type="number" value="0" />
  <method name=" bringToFront " />
  <method name=" __gotload " />
  <event name=" onload " />
  <event name=" onsrc " />
  <method name=" setSrc " args="s" />
  <method name=" setTarget " args="t" />
  <method name=" setVisible " args="v" />
</class>

JavaScript Synopsis

public html extends  LzNode  {
  public var appendto ;
  public var framename  : String;
  public var heightoffset  : Number;
  public var iframe ;
  public var loading  : Boolean;
  public var src  : String;
  public var target ;
  public var visible  : Boolean;
  public var widthoffset  : Number;
  public var xoffset  : Number;
  public var yoffset  : Number;
  prototype public function bringToFront ();
  prototype public function __gotload ();
  prototype public event onload ;
  prototype public event onsrc ;
  prototype public function setSrc (s);
  prototype public function setTarget (t);
  prototype public function setVisible (v);
}