C# Class UIParser.Nodes.AddProgressBarNode

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

Public Properties

Property Type Description
BackgroundImage string
ForegroundImage string
ID int
MaximumValue int?
MinimumValue int?
Name string
ProgressbarPosition ArrayListNode
Value 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

BackgroundImage public_oe property

Defines a UIS image resource to associate as the background image for this button control.
public string BackgroundImage
return string

ForegroundImage public_oe property

Defines a UIS image resource to associate as the foreground image for this button control.
public string ForegroundImage
return string

ID public_oe property

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

MaximumValue public_oe property

Defines the value associated with the finish end of this progress bar control.
public int? MaximumValue
return int?

MinimumValue public_oe property

Defines the value associated with the start end of this progress bar control.
public int? MinimumValue
return int?

Name public_oe property

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

ProgressbarPosition public_oe property

Position of this progressbar control. Required.
public ArrayListNode,UIParser.Nodes ProgressbarPosition
return ArrayListNode

Value public_oe property

Defines the initial value which this progress bar control is set to.
public int? Value
return int?