Garry's Mod Wiki

Revision Difference

Label#529392

<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()⤶ ⤶ local frame = vgui.Create( "DFrame" ) frame:SetSize( ScrW() * 0.25, ScrH() * 0.25 ) frame:Center() frame:SetVisible( true )⤶ frame:MakePopup() ⤶ frame.Label = vgui.Create( "Label", frame )⤶ frame.Label:SetPos( 50, 50 )⤶ frame.Label:SetText("Lua Labels!")⤶ frame.Label:SizeToContents()⤶ </code> </example>