Name

textstyle

Synopsis

LZX: textstyle
JavaScript: textstyle
Type: Class
Access: public
Topic: Incubator.Components
Declared in: lps/components/incubator/textstyle.lzx

Description

Simple class that adds font attributes to style class
        <textstyle font="futura" fontsize="12" fontstyle="bold" />
        

Superclass Chain

node (LzNode) » style » textstyle

Known Subclasses

Details

Properties (3)

font
<attribute name="font" type="string" value="arial" />
public var font : String;
fontsize
<attribute name="fontsize" type="number" value="11" />
public var fontsize : Number;
fontstyle
<attribute name="fontstyle" type="string" value="plain" />
public var fontstyle : String;

LZX Synopsis

<class name="textstyle" extends=" style ">
  <attribute name=" font " type="string" value="arial" />
  <attribute name=" fontsize " type="number" value="11" />
  <attribute name=" fontstyle " type="string" value="plain" />
</class>

JavaScript Synopsis

public textstyle extends  style  {
  public var font  : String;
  public var fontsize  : Number;
  public var fontstyle  : String;
}