Garry's Mod Wiki

Revision Difference

DCheckBox#517493

<cat>panelfunc</cat> <panel>⤶ <parent>DButton</parent>⤶ <description>The DCheckBox is a checkbox. It allows you to get a boolean value from the user (true/false - yes/no)</description>⤶ <hooks></hooks>⤶ <file>lua/vgui/dcheckbox.lua</file>⤶ ⤶ </panel>⤶ ## Description⤶ ⤶ The DCheckBox is a checkbox. It allows you to get a boolean value from the user (true/false - yes/no)⤶ ⤶ [File](https://github.com/Facepunch/garrysmod/blob/master/garrysmod/lua/vgui/dcheckbox.lua) <example>⤶ ⤶ <example>⤶ <description>Creates a DCheckBox and sets its initial value.</description> <code> local window = vgui.Create( "DFrame" ) window:SetSize( 300, 200 ) window:Center() window:MakePopup() local checkbox = window:Add( "DCheckBox" ) -- Create the checkbox checkbox:SetPos( 25, 50 ) -- Set the position checkbox:SetValue( true ) -- Initial "ticked" value </code> </example>