DgsGridListClearColumn

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function clears all the column data from a dgs grid list and doesn't remove row.

Syntax

bool dgsGridListClearColumn ( element gridList, bool notResetSelectedItem, bool notResetScrollBar )

Required Arguments

  • gridList: The dgs grid list element to be cleared
  • notResetSelectedItem: Whether to reset selected item.
  • notResetScrollBar Whether to reset scroll bar.

Returns

Returns true if the grid list element is valid and its columns have been cleared successfully, false otherwise.

Example

DGS = exports.dgs
function clientsideResourceStart ()
        -- Create the grid list element
	local testList = DGS:dgsCreateGridList ( 0.45, 0.45, 0.15, 0.15, true ) 
        -- Create a column in the list and add 2 rows displaying "Hello" text and "world" text
	local column = DGS:dgsGridListAddColumn( testList, "test", 0.85 ) 
	DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "Hello" )
	DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "World" )
        -- Set a timer to call the dgsGridListClearColumn function to clear the grid list column in 5 seconds
	setTimer ( DGS:dgsGridListClearColumn, 5000, 1, testList ) 
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips