Name

gradientview

Synopsis

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

Superclass Chain

gradientview

Known Subclasses

Details

Properties (16)

borderColor
<attribute name="borderColor" type="color" value="0x000000" />
public var borderColor : color;
borderColorBottom
<attribute name="borderColorBottom" type="color" />
public var borderColorBottom : color;
borderColorLeft
<attribute name="borderColorLeft" type="color" />
public var borderColorLeft : color;
borderColorRight
<attribute name="borderColorRight" type="color" />
public var borderColorRight : color;
borderColorTop
<attribute name="borderColorTop" type="color" />
public var borderColorTop : color;
borderSize
<attribute name="borderSize" type="number" value="0" />
public var borderSize : Number;
borderSizeBottom
<attribute name="borderSizeBottom" type="number" value="0" />
public var borderSizeBottom : Number;
borderSizeLeft
<attribute name="borderSizeLeft" type="number" value="0" />
public var borderSizeLeft : Number;
borderSizeRight
<attribute name="borderSizeRight" type="number" value="0" />
public var borderSizeRight : Number;
borderSizeTop
<attribute name="borderSizeTop" type="number" value="0" />
public var borderSizeTop : Number;
colorFrom
<attribute name="colorFrom" type="color" />
public var colorFrom : color;
colorTo
<attribute name="colorTo" type="color" />
public var colorTo : color;
gradientOrientation
<attribute name="gradientOrientation" type="string" value="vertical" />
public var gradientOrientation : String;
gradientType
<attribute name="gradientType" type="string" value="linear" />
public var gradientType : String;
stretchHeight
<attribute name="stretchHeight" type="number" />
public var stretchHeight : Number;
stretchWidth
<attribute name="stretchWidth" type="number" />
public var stretchWidth : Number;

Methods (3)

construct()
<method name="construct" args="parent, args" />
public function construct(parent, args);
draw()
<method name="draw" />
public function draw();
init()
<method name="init" />
public function init();

LZX Synopsis

<class name="gradientview">
  <attribute name=" borderColor " type="color" value="0x000000" />
  <attribute name=" borderColorBottom " type="color" />
  <attribute name=" borderColorLeft " type="color" />
  <attribute name=" borderColorRight " type="color" />
  <attribute name=" borderColorTop " type="color" />
  <attribute name=" borderSize " type="number" value="0" />
  <attribute name=" borderSizeBottom " type="number" value="0" />
  <attribute name=" borderSizeLeft " type="number" value="0" />
  <attribute name=" borderSizeRight " type="number" value="0" />
  <attribute name=" borderSizeTop " type="number" value="0" />
  <attribute name=" colorFrom " type="color" />
  <attribute name=" colorTo " type="color" />
  <attribute name=" gradientOrientation " type="string" value="vertical" />
  <attribute name=" gradientType " type="string" value="linear" />
  <attribute name=" stretchHeight " type="number" />
  <attribute name=" stretchWidth " type="number" />
  <method name=" construct " args="parent, args" />
  <method name=" draw " />
  <method name=" init " />
</class>

JavaScript Synopsis

public gradientview {
  public var borderColor  : color;
  public var borderColorBottom  : color;
  public var borderColorLeft  : color;
  public var borderColorRight  : color;
  public var borderColorTop  : color;
  public var borderSize  : Number;
  public var borderSizeBottom  : Number;
  public var borderSizeLeft  : Number;
  public var borderSizeRight  : Number;
  public var borderSizeTop  : Number;
  public var colorFrom  : color;
  public var colorTo  : color;
  public var gradientOrientation  : String;
  public var gradientType  : String;
  public var stretchHeight  : Number;
  public var stretchWidth  : Number;
  prototype public function construct (parent, args);
  prototype public function draw ();
  prototype public function init ();
}