C# Class UIParser.Nodes.AddTextEditNode

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

Public Properties

Property Type Description
Alignment int?
BackColor ArrayListNode
Capacity int?
Color ArrayListNode
CursorColor ArrayListNode
EnableIME int?
FlashOnEmpty int?
Font int
FrameColor ArrayListNode
FrameOnFocus int?
ID int
Lines int?
Mode string
Name string
ResizeForExactLineHeight int?
ScrollbarGutter int?
ScrollbarImage string
ScrollbarType int?
Size ArrayListNode
TextEditPosition ArrayListNode
Tooltip string
Transparent 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

Alignment public_oe property

Defines the alignment of this text control. 0=Left-Top, 1=Left-Center, 2=Center-Top, 3=Center-Center, 4=Right-Top, 5=Right-Center. Default is left-top.
public int? Alignment
return int?

BackColor public_oe property

Defines whether or not this text edit control will be notified when the user presses the enter key. 1=Yes, 0=No. Default is no notification.
public ArrayListNode,UIParser.Nodes BackColor
return ArrayListNode

Capacity public_oe property

Defines the maximum character limit of this text control. Default is 0 for unlimited.
public int? Capacity
return int?

Color public_oe property

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

CursorColor public_oe property

Color of the cursor in this text edit control.
public ArrayListNode,UIParser.Nodes CursorColor
return ArrayListNode

EnableIME public_oe property

Defines whether or not to enable input method editing. 1=Yes, 0=No. Default is no IME.
public int? EnableIME
return int?

FlashOnEmpty public_oe property

Defines whether or not this text edit control will flash when it is empty. 1=Yes, 0=No. Default is no flashing.
public int? FlashOnEmpty
return int?

Font public_oe property

Defines the font size of this text edit control in points. Required.
public int Font
return int

FrameColor public_oe property

Color of frame for this text edit control.
public ArrayListNode,UIParser.Nodes FrameColor
return ArrayListNode

FrameOnFocus public_oe property

Defines whether this text edit control will receive a border on focus. 1=Yes, 0=No. Default is yes.
public int? FrameOnFocus
return int?

ID public_oe property

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

Lines public_oe property

Defines the number of lines in this text edit control.
public int? Lines
return int?

Mode public_oe property

Defines extra attributes for this text edit control. Valid values are kInsert and kReadOnly.
public string Mode
return string

Name public_oe property

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

ResizeForExactLineHeight public_oe property

Defines whether this text edit control should resize for exact line heights. 1=Yes, 0=No. Default is no.
public int? ResizeForExactLineHeight
return int?

ScrollbarGutter public_oe property

Defines the width of the scrollbar in pixels. This should match the width of scrollbarImage.
public int? ScrollbarGutter
return int?

ScrollbarImage public_oe property

Defines a UIS image resource to associate with the scrollbar of this text edit control.
public string ScrollbarImage
return string

ScrollbarType public_oe property

Defines the type of the scrollbar of this text edit control. 0=slider, 1=scrollbar. Default is scrollbar.
public int? ScrollbarType
return int?

Size public_oe property

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

TextEditPosition public_oe property

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

Tooltip public_oe property

Name of a UIS text resource to use as a tooltip for this text edit control.
public string Tooltip
return string

Transparent public_oe property

Defines the transparency of this text edit control. 1 is transparent and 0 is opaque.
public int Transparent
return int