Details
Properties (13)
-
align
-
<attribute name="align" />
-
bold
-
<attribute name="bold" type="boolean" />
public var bold : Boolean;
-
color
-
<attribute name="color" type="color" />
public var color : color;
-
font
-
<attribute name="font" type="string" />
public var font : String;
-
indent
-
<attribute name="indent" />
-
italic
-
<attribute name="italic" type="boolean" />
public var italic : Boolean;
-
leading
-
<attribute name="leading" />
-
leftmargin
-
<attribute name="leftmargin" />
-
rightmargin
-
<attribute name="rightmargin" />
-
size
-
<attribute name="size" />
-
target
-
<attribute name="target" type="string" />
public var target : String;
-
underline
-
<attribute name="underline" type="boolean" />
public var underline : Boolean;
-
url
-
<attribute name="url" type="string" />
Methods (2)
-
construct()
-
<method name="construct" />
public function construct();
-
toHTML()
-
public function toHTML();
Creates an html tag matching this format.
LZX Synopsis
<class name="
textformat" extends="
LzNode
">
<attribute name="
align
" />
<attribute name="
bold
" type="
boolean" />
<attribute name="
color
" type="
color" />
<attribute name="
font
" type="
string" />
<attribute name="
italic
" type="
boolean" />
<attribute name="
size
" />
<attribute name="
target
" type="
string" />
<attribute name="
underline
" type="
boolean" />
<attribute name="
url
" type="
string" />
</class>
JavaScript Synopsis
public deprecated
textformat extends
LzNode
{
public var
bold
:
Boolean;
public var
color
:
color;
public var
font
:
String;
prototype public function
toHTML
();
}