TextYAlignment (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Pauljkl
New page: {{Property| name = TextYAlignment |property = Enum ''TextYAlignment'' |description = Sets where the text is placed in a GUI on the Y axis |object = [[RBX.lua.TextButton (Object)|TextBu...
>Camoy
same changes as TextX
Line 1: Line 1:
{{Property|
<onlyinclude>{{Property
name = TextYAlignment
|name = TextYAlignment
|property = [[Enum]] ''TextYAlignment''
|property = [[Enum]] ''TextYAlignment''
|description = Sets where the text is placed in a GUI on the Y axis
|description = Sets where the text is placed in a GUI on the Y axis.
|object = [[RBX.lua.TextButton (Object)|TextButton]], [[RBX.lua.TextBox (Object)|TextBox]], [[RBX.lua.TextLabel (Object)|TextLabel]]
|object = [[TextBox]], [[TextButton]], [[TextLabel]]
|}}
}}</onlyinclude>


{{clear floats}}


{{Enum|The TextYAlignment [[Enum]] controls TextY alignment.  It holds 3 values.|
{{Enum/row|0|Left|The text is set aligned to the left.}}
{{Enum/row|1|Right|The text is set aligned to the right.}}
{{Enum/row|2|Center|The text is set aligned to the center.}}
}}


{| class="wikitable" width=100% border="1" cellspacing="0" cellpadding="4" style="background-color: #fdd; border: 1px solid #f00;"
<br />
|-
 
| bgcolor="#AB5454"|<span style="color:white">'''Enum'''</span>
{{Example|The resulting label's text will be centered.<pre>
| bgcolor="#AB5454"|<span style="color:white">'''Name'''</span>
Instance.new('TextLabel', script.Parent).TextYAlignment = Enum.TextYAlignment.Center
| bgcolor="#AB5454"|<span style="color:white">'''Description'''</span>
</pre>}}
|-
 
|+ <big>The TextYAlignment [[Enum]] set only has three numbers.</big>
[[Category:Properties]]
|0
|Top
|The text starts from the top of the GUI Object
|-
|1
|Center
|The text starts from the center of the GUI Object
|-
|2
|Bottom
|The text starts from the bottom of the GUI Object
|}

Revision as of 13:53, 22 January 2011

TextYAlignment
Property Enum TextYAlignment
Description Sets where the text is placed in a GUI on the Y axis.
Member of [[RBX.lua.TextBox, TextButton, TextLabel (Object)|TextBox, TextButton, TextLabel]]
The TextYAlignment Enum controls TextY alignment. It holds 3 values.
Enum Name Description
0 Left The text is set aligned to the left.
1 Right The text is set aligned to the right.
2 Center The text is set aligned to the center.


Example
The resulting label's text will be centered.
Instance.new('TextLabel', script.Parent).TextYAlignment = Enum.TextYAlignment.Center