C# Class UIParser.Nodes.AddListboxNode

Inheritance: UINode
Datei anzeigen Open project: Afr0Games/Project-Dollhouse

Public Properties

Property Type Description
Alignments int
Columns int
Cursor int
FillColor ArrayListNode
Font int?
ID int
ListBoxPosition ArrayListNode
Name string
RowHeight int?
SelectionFillColor ArrayListNode
Size ArrayListNode
Transparent int
VisibleRows int

Public Methods

Method Description
Accept ( IUIVisitor visitor ) : void

Protected Methods

Method Description
InitChildren ( ParseTreeNodeList nodes ) : void

Method Details

Accept() public method

public Accept ( IUIVisitor visitor ) : void
visitor IUIVisitor
return void

InitChildren() protected method

protected InitChildren ( ParseTreeNodeList nodes ) : void
nodes ParseTreeNodeList
return void

Property Details

Alignments public_oe property

Defines the alignment of this list box control. Required.
public int Alignments
return int

Columns public_oe property

Defines the number of columns used in this list box. Required.
public int Columns
return int

Cursor public_oe property

Defines whether or not this list box control will show a cursor. 1=Yes, 0=No. Default is yes.
public int Cursor
return int

FillColor public_oe property

Defines the fill color of this list box control. Syntax: (Red, Green, Blue) where each of these colors is a number in the range of [0-255].
public ArrayListNode,UIParser.Nodes FillColor
return ArrayListNode

Font public_oe property

Defines the font size of this list box control in points.
public int? Font
return int?

ID public_oe property

Defines the identifier of this listbox control. Required.
public int ID
return int

ListBoxPosition public_oe property

Defines the position of this listbox control in x,y coordinates. Syntax: (x,y). Required.
public ArrayListNode,UIParser.Nodes ListBoxPosition
return ArrayListNode

Name public_oe property

Defines the UIS identifier of this listbox control. Required.
public string Name
return string

RowHeight public_oe property

Defines the line height of each row of this list box control in points.
public int? RowHeight
return int?

SelectionFillColor public_oe property

Defines the selection fill color of this list box control. Syntax: (Red, Green, Blue) where each of these colors is a number in the range of [0-255].
public ArrayListNode,UIParser.Nodes SelectionFillColor
return ArrayListNode

Size public_oe property

Defines the dimensions of this listbox control. Syntax: (width,height). Required.
public ArrayListNode,UIParser.Nodes Size
return ArrayListNode

Transparent public_oe property

Defines the transparency of this list box control. 1 is transparent and 0 is opaque. Required.
public int Transparent
return int

VisibleRows public_oe property

Defines the height of the list box in rows.
public int VisibleRows
return int