Prev | Current Page 908 | Next

L. McColl-Sylvester and F. Ponticelli

"Professional haXe and Neko"

Manager;
import nGui.controls.containers.Dialog;
import nGui.controls.containers.Tabs;
import nGui.controls.ReturnType;
Variable Description
readonly : Bool Specifies the edit capability of the list when editbox is set to
true.
showdropdown : Bool Shows or hides the drop-down items. It is available only if
dropdown is set to true. It can be used at run time.
numlines : Int The number of lines visible within the List controls client area. It
affects both standard and drop-down list types.
(continued)
496
Part III: Extending the Possibilities
class TabbedSample
{
public static function main()
{
var bs = new TabbedSample();
}
public function new()
{
var mng = new Manager();
var button1 : Button = new Button( ???Button A??? );
var button2 : Button = new Button( ???Button B??? );
var button3 : Button = new Button( ???Button C??? );
var arr : Array < Control > = new Array();
arr.push( button1 );
arr.push( button2 );
arr.push( button3 );
button1.tabTitle( ???One??? );
button2.tabTitle( ???Two??? );
button3.


Pages:
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920