C# Класс UIParser.Nodes.AddSliderNode

Наследование: UINode
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
ID int
Image string
MaximumValue int?
MinimumValue int?
Name string
Orientation int
Size ArrayListNode
SliderPosition ArrayListNode

Открытые методы

Метод Описание
Accept ( IUIVisitor visitor ) : void

Защищенные методы

Метод Описание
InitChildren ( ParseTreeNodeList nodes ) : void

Описание методов

Accept() публичный Метод

public Accept ( IUIVisitor visitor ) : void
visitor IUIVisitor
Результат void

InitChildren() защищенный Метод

protected InitChildren ( ParseTreeNodeList nodes ) : void
nodes ParseTreeNodeList
Результат void

Описание свойств

ID публичное свойство

Defines the UIS identifier of this slider control. Required.
public int ID
Результат int

Image публичное свойство

Defines a UIS image resource to associate with this slider control. Required.
public string Image
Результат string

MaximumValue публичное свойство

Defines the value associated with the big end of this slider control.
public int? MaximumValue
Результат int?

MinimumValue публичное свойство

Defines the value associated with the small end of this slider control.
public int? MinimumValue
Результат int?

Name публичное свойство

Defines the UIS identifier of this slider control. Required.
public string Name
Результат string

Orientation публичное свойство

Defines the orientation of this slider control. 0 means horizontal and 1 means vertical.
public int Orientation
Результат int

Size публичное свойство

Defines the dimensions of this slider control. Syntax: (width,height). Required.
public ArrayListNode,UIParser.Nodes Size
Результат ArrayListNode

SliderPosition публичное свойство

Defines the position of this slider control in x,y coordinates. Syntax: (x,y)
public ArrayListNode,UIParser.Nodes SliderPosition
Результат ArrayListNode