guiGridListGetColumnWidth | Multi Theft Auto: Wiki Skip to content

guiGridListGetColumnWidth

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This allows you to get the width of an existing column in a gridlist.

Syntax

guiGridListGetColumnWidth ( )

Code Examples

client
grid = guiCreateGridList(313, 354, 162, 100, false)
c = guiGridListAddColumn(grid, "test",0.5)
addCommandHandler("With",function()
With = guiGridListGetColumnWidth(grid ,c, true)
outputChatBox("Column Width = "..With)
end
)

See Also

GUI Functions