C# Class UIParser.Nodes.AddSliderNode

Inheritance: UINode
Show file Open project: Afr0Games/Project-Dollhouse Class Usage Examples

Public Properties

Property Type Description
ID int
Image string
MaximumValue int?
MinimumValue int?
Name string
Orientation int
Size ArrayListNode
SliderPosition ArrayListNode

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

ID public property

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

Image public property

Defines a UIS image resource to associate with this slider control. Required.
public string Image
return string

MaximumValue public property

Defines the value associated with the big end of this slider control.
public int? MaximumValue
return int?

MinimumValue public property

Defines the value associated with the small end of this slider control.
public int? MinimumValue
return int?

Name public property

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

Orientation public property

Defines the orientation of this slider control. 0 means horizontal and 1 means vertical.
public int Orientation
return int

Size public property

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

SliderPosition public property

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