Name

tabpane

Synopsis

LZX: tabpane
JavaScript: tabpane
Type: Class
Access: public
Topic: Components.Laszlo Components
Declared in: lps/components/lz/tabs.lzx

Description

Tabpanes are children of the tabs component. Each tabpane has a corresponding tab. If width and height are not set, all tabpanes will resize themselves to largest tabpane or the width of the tabsbar, whichever is larger. The content of the tabpane is initstage late. You can override this value by setting initstage late on tabpane.

Superclass Chain

node (LzNode) » view (LzView) » basecomponent » basetabpane » tabpane

Known Subclasses

Details

Properties (1)

tabwidth
<attribute name="tabwidth" type="number" value="-1" />
public var tabwidth : Number;
Width of the tab associated with this tabpane. If not set, the tab will resize itself to fit.

LZX Synopsis

<class name="tabpane" extends=" basetabpane ">
  <attribute name=" tabwidth " type="number" value="-1" />
</class>

JavaScript Synopsis

public tabpane extends  basetabpane  {
  public var tabwidth  : Number;
}