Name

borderinput

Synopsis

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

Superclass Chain

node (LzNode) » view (LzView) » borderinput

Known Subclasses

Details

Properties (5)

changed
<attribute name="changed" value="${this.txt.changed}" />
public var changed;
label
<attribute name="label" type="string" />
public var label : String;
labelstyle
<attribute name="labelstyle" value="null" />
public var labelstyle;
should be an object of type "textstyle"
labelwidth
<attribute name="labelwidth" type="number" value="80" />
public var labelwidth : Number;
text
<attribute name="text" />
public var text;

Methods (3)

getText()
<method name="getText" />
public function getText();
Get text from border input.
setSelection()
<method name="setSelection" args="ns, ne" />
public function setSelection(ns, ne);
setText()
<method name="setText" args="t, isinitvalue" />
public function setText(t : String, isinitvalue : Boolean);
Set text for border input.

LZX Synopsis

<class name="borderinput" extends=" LzView ">
  <attribute name=" changed " value="${this.txt.changed}" />
  <attribute name=" label " type="string" />
  <attribute name=" labelstyle " value="null" />
  <attribute name=" labelwidth " type="number" value="80" />
  <attribute name=" text " />
  <method name=" getText " />
  <method name=" setSelection " args="ns, ne" />
  <method name=" setText " args="t, isinitvalue" />
</class>

JavaScript Synopsis

public borderinput extends  LzView  {
  public var changed ;
  public var label  : String;
  public var labelstyle ;
  public var labelwidth  : Number;
  public var text ;
  prototype public function getText ();
  prototype public function setSelection (ns, ne);
  prototype public function setText (t : String, isinitvalue : Boolean);
}