Garry's Mod Wiki

DListView_Column:SetFixedWidth

  DListView_Column:SetFixedWidth( number width )

Description

Sets the fixed width of the column.

Internally this will set SetMinWidth and SetMaxWidth to the value provided

Arguments

1 number width
The number value which will determine a fixed width.

Example

Creates a DListView and populates it with two columns and two items, only one of which can be selected at a time.

The first column will be longer than the second column.

local Frame = vgui.Create( "DFrame" ) Frame:SetSize( 500, 500 ) Frame:Center() Frame:MakePopup() local SimpleList = vgui.Create( "DListView", Frame ) SimpleList:Dock( FILL ) SimpleList:SetMultiSelect( false ) SimpleList:AddColumn( "Column 1" ) SimpleList:AddColumn( "Column 2" ):SetFixedWidth(125) SimpleList:AddLine( "First", "Column" ) SimpleList:AddLine( "Second", "Column" )
Output: