Revision Difference
Label#528147
<panel>
<name>Label</name>
<parent>Panel</parent>
<description>A basic label or "single line text area" that is non-editable.</description>
</panel>
<example>
<description>Creates a label and fills it with the text "Lua Labels!" parented to a simple frame.</description>
<code>
local frame = vgui.Create( "Frame" )
frame.Label1 = vgui.Create( "Label", frame )
frame.Label1:SetPos( 50, 50 )
frame.Label1:SetText("Lua Labels!")
frame.Label1:SizeToContents()
frame:SetSize( ScrW() * 0.25, ScrH() * 0.25 )
frame:Center()
frame:SetVisible( true )
frame:MakePopup()
</code>
</example>⤶
⤶
</example>