Garry's Mod Wiki

Revision Difference

Label#552240

<panel> <name>Label</name> <parent>Panel</parent> <description>A basic label or "single line text area" that is non-editable. You might be looking for <page>DLabel</page>.</description>⤶ <realm>Client</realm>⤶ <description>⤶ A basic label or "single line text area" that is non-editable. You might be looking for <page>DLabel</page>.⤶ </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( "DFrame" ) frame:SetSize( ScrW() * 0.25, ScrH() * 0.25 ) frame:Center() frame:MakePopup() frame.Label = vgui.Create( "Label", frame ) frame.Label:SetPos( 50, 50 ) frame.Label:SetText("Lua Labels!") frame.Label:SizeToContents() </code> </example>