Garry's Mod Wiki

Revision Difference

DListView_Column:SetMaxWidth#513720

<function name="SetMaxWidth" parent="DListView_Column" type="panelfunc"> <ispanel>yes</ispanel> <description>Sets the maximum width of a column.</description> <realm>Client</realm> <args> <arg name="width" type="number">The number value which will determine a maximum width.</arg> </args> </function> <example> <description> Creates a DListView and populates it with two columns and two items, only one of which can be selected at a time. The second column can't be bigger than the argument value. </description> <code> 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" ):SetMaxWidth(225) SimpleList:AddLine( "First", "Column" ) SimpleList:AddLine( "Second", "Column" ) </code> <output></output> </example>