VGUI - Containers
Container components: ScrollPanel, TabPanel, Accordion
cLib.DScrollPanel
# cLib.DScrollPanel Scrollable container panel with styled scrollbar. ## Basic Usage ```lua local scroll = vgui.Create("cLib.DScrollPanel", parent)...
cLib.DPropertySheet
# cLib.DPropertySheet Tab container with styled tabs. ## Basic Usage ```lua local sheet = vgui.Create("cLib.DPropertySheet", parent) sheet:Dock(FIL...
cLib.DTabPanel
# cLib.DTabPanel Modern tab panel with animated indicator. ## Basic Usage ```lua local tabs = vgui.Create("cLib.DTabPanel", parent) tabs:Dock(FILL)...
cLib.DAccordion
# cLib.DAccordion Collapsible accordion with multiple sections. ## Basic Usage ```lua local accordion = vgui.Create("cLib.DAccordion", parent) acco...
cLib.DCategoryList
# cLib.DCategoryList Collapsible category list for organized item displays. ## Basic Usage ```lua local catList = vgui.Create("cLib.DCategoryList",...
cLib.DListView
# cLib.DListView Styled list view with columns, sorting, and selection. ## Basic Usage ```lua local list = vgui.Create("cLib.DListView", parent) li...