Garry's Mod Wiki

Revision Difference

PANEL:GenerateExample#561637

<function name="GenerateExample" parent="PANEL" type="hook"> <description>Called when the panel should generate example use case / example code to use for this panel. Used in the panel opened by **derma_controls** console command.</description> <file line="20">lua/derma/derma_example.lua</file>⤶ <realm>Client</realm> <args> <arg name="class" type="string">The classname of the panel to generate example for. This will be the class name of your panel.</arg> <arg name="dpropertysheet" type="Panel">A <page>DPropertySheet</page> to add your example to. See examples below.</arg> <arg name="width" type="number">Width of the property sheet?</arg> <arg name="height" type="number">Width of the property sheet?</arg> </args> </function> <example> <description>Example usage of this hook from DButton's code.</description> <code> function PANEL:GenerateExample( ClassName, PropertySheet, Width, Height ) local ctrl = vgui.Create( ClassName ) ctrl:SetText( "Example Button" ) ctrl:SetWide( 200 ) PropertySheet:AddSheet( ClassName, ctrl, nil, true, true ) end derma.DefineControl( "DButton", "A standard Button", PANEL, "DLabel" ) </code> <output>A tab named "DButton" will appear in **derma_controls** menu.</output> </example>