DModelSelect
Description
We advise against using this. It may be changed or removed in a future update.
This is derived from the deprecated DPanelList.
A vertical list of models.
Parent
Derives methods, etc not listed on this page from DPanelSelect.
Example
Creates a DModelSelect within a DFrame and adds four models.
-- Create a table of models
local models = {
["models/props_c17/oildrum001_explosive.mdl"] = {},
["models/props_c17/oildrum001.mdl"] = {},
["models/props_junk/TrafficCone001a.mdl"] = {},
["models/props_c17/gravestone004a.mdl"] = {}
}
local frame = vgui.Create("DFrame")
frame:SetSize(220, 220)
frame:SetTitle("DModelSelect Example")
frame:MakePopup()
frame:Center()
local mselect = vgui.Create( "DModelSelect", frame )
mselect:SetModelList( models, "", false, true )
mselect:SetSize(150, 150)
mselect:Center()
Output: 
