C# Class UIParser.Nodes.AddSliderNode

Inheritance: UINode
Afficher le fichier Open project: Afr0Games/Project-Dollhouse Class Usage Examples

Méthodes publiques

Свойство Type Description
ID int
Image string
MaximumValue int?
MinimumValue int?
Name string
Orientation int
Size ArrayListNode
SliderPosition ArrayListNode

Méthodes publiques

Méthode Description
Accept ( IUIVisitor visitor ) : void

Méthodes protégées

Méthode Description
InitChildren ( ParseTreeNodeList nodes ) : void

Method Details

Accept() public méthode

public Accept ( IUIVisitor visitor ) : void
visitor IUIVisitor
Résultat void

InitChildren() protected méthode

protected InitChildren ( ParseTreeNodeList nodes ) : void
nodes ParseTreeNodeList
Résultat void

Property Details

ID public_oe property

Defines the UIS identifier of this slider control. Required.
public int ID
Résultat int

Image public_oe property

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

MaximumValue public_oe property

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

MinimumValue public_oe property

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

Name public_oe property

Defines the UIS identifier of this slider control. Required.
public string Name
Résultat string

Orientation public_oe property

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

Size public_oe property

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

SliderPosition public_oe property

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