DColorButton
Description
Colorful buttons. Used internally by DColorPalette.
Parent
Derives methods, etc not listed on this page from DLabel.
Example
Creates a DColorButton buton.
local frame = vgui.Create( "DFrame" )
frame:SetSize( 500, 500 )
frame:Center()
frame:MakePopup()
local DColorButton = vgui.Create( "DColorButton", frame )
DColorButton:SetPos( 1, 28 )
DColorButton:SetSize( 100, 30 )
DColorButton:Paint( 100, 30 )
DColorButton:SetText( "DColorButton" )
DColorButton:SetColor( Color( 0, 110, 160 ) )
function DColorButton:DoClick() -- Callback inherited from DLabel, which is DColorButton's base
print( "I am clicked! My color is ", self:GetColor() )
end