Name

boxview

Synopsis

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

Superclass Chain

node (LzNode) » view (LzView) » boxview

Known Subclasses

Details

Properties (7)

bordercolor
<attribute name="bordercolor" type="string" value="0x000000" />
public var bordercolor : String;
Color of the border, default is black
bordersize
<attribute name="bordersize" type="number" value="1" />
public var bordersize : Number;
Size of the border
clip
<attribute name="clip" value="false" />
public var clip;
Clip content that extends beyond the specified height and width
contentbgcolor
<attribute name="contentbgcolor" type="string" value="" />
public var contentbgcolor : String;
Background color of the element, default is transparent
marginsize
<attribute name="marginsize" type="number" value="0" />
public var marginsize : Number;
Size of the margin
paddingsize
<attribute name="paddingsize" type="number" value="0" />
public var paddingsize : Number;
Size of the padding
title
<attribute name="title" type="string" value="" />
public var title : String;
Italized title of the view, appears in upper left

LZX Synopsis

<class name="boxview" extends=" LzView ">
  <attribute name=" bordercolor " type="string" value="0x000000" />
  <attribute name=" bordersize " type="number" value="1" />
  <attribute name=" clip " value="false" />
  <attribute name=" contentbgcolor " type="string" value="" />
  <attribute name=" marginsize " type="number" value="0" />
  <attribute name=" paddingsize " type="number" value="0" />
  <attribute name=" title " type="string" value="" />
</class>

JavaScript Synopsis

public boxview extends  LzView  {
  public var bordercolor  : String;
  public var bordersize  : Number;
  public var clip ;
  public var contentbgcolor  : String;
  public var marginsize  : Number;
  public var paddingsize  : Number;
  public var title  : String;
}