Difference between revisions of "Menu List"

From Wiki
Jump to: navigation, search
m
(simplified synopsys - example added)
Line 1: Line 1:
 
{{command header|Menu}}
 
{{command header|Menu}}
  
{{body|menu List { {"Create"} {name} {x} {y} {width} {height}<nowiki> | </nowiki>{"Add"} {name} {string}<nowiki> | </nowiki>{"Select"} {list name} {item number<nowiki>} } </nowiki> |The [[menu List]] creates a listbox at position x/y with specified size on the EasyUO menu window, adds entires to the listbox or selects an entry in the list.}}
+
{{body|menu List Create {name} {x} {y} {width} {height}
 +
 
 +
menu List Add {name} {string}
 +
 
 +
menu List Select {list name} {item number<nowiki>}</nowiki> |The [[menu List]] creates a listbox at position x/y with specified size on the EasyUO menu window, adds entires to the listbox or selects an entry in the list.}}
 +
 
 +
 
 +
=== Example ===
 +
<pre>menu Clear
 +
menu Font BGColor white                          ; sets list's background color to white
 +
menu List Create lstTest 10 10 180 120            ; create listbox
 +
menu List Add lstTest This is a simple example    ; add a string
 +
menu List Add lstTest showing how to use          ; another one
 +
menu List Add lstTest a listbox!                  ; and another...
 +
 
 +
menu List Add lstTest                            ; adds a blank line
 +
menu List Add lstTest This line will be selected. ; yet another line
 +
menu List Select lstTest 5                        ; select line with index 5
 +
 
 +
menu Window Title Listbox Example
 +
menu Window Size 200 140
 +
menu Show
 +
halt</pre>
  
 
{{footer}}
 
{{footer}}

Revision as of 14:26, 29 September 2005


Synopsis

menu List Create {name} {x} {y} {width} {height}

menu List Add {name} {string}

menu List Select {list name} {item number}

Description

The menu List creates a listbox at position x/y with specified size on the EasyUO menu window, adds entires to the listbox or selects an entry in the list.


Example

menu Clear
menu Font BGColor white                           ; sets list's background color to white
menu List Create lstTest 10 10 180 120            ; create listbox
menu List Add lstTest This is a simple example    ; add a string
menu List Add lstTest showing how to use          ; another one
menu List Add lstTest a listbox!                  ; and another...

menu List Add lstTest                             ; adds a blank line
menu List Add lstTest This line will be selected. ; yet another line
menu List Select lstTest 5                        ; select line with index 5

menu Window Title Listbox Example
menu Window Size 200 140
menu Show
halt

See also

Main Page Documentation