Changeset 46

Show
Ignore:
Timestamp:
05/13/07 23:47:22 (2 years ago)
Author:
lindquist
Message:

another listbox documentation update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/bughunt/docs/minwin/listbox.d

    r45 r46  
    11/** 
    2 Display a list of items to choose from. 
     2Display a list of strings to choose from. 
    33*/ 
    44 
     
    77import minwin.component; 
    88 
    9 /// Widget that shows a list of items to choose from. 
     9/// Widget that displays a list of strings to choose from. 
    1010class ListBox : WindowChild 
    1111{ 
    1212    /** Constructs a new ListBox. 
    13     $(D_PARAM texts) - array of strings to be added to the list. 
    14     $(D_PARAM vscroll) - enable vertical scrollbar. 
    15     $(D_PARAM hscroll) - enable horizontal scrollbar. 
     13    Params: 
     14        texts = array of strings to be added to the list. 
     15        vscroll = enable vertical scrollbar. 
     16        hscroll = enable horizontal scrollbar. 
    1617    */ 
    1718    this(Component parent, char[][] texts, bool vscroll = true, bool hscroll = true, char[] name = "");