CustomTableView:removeColumn

From Multi Theft Auto: Wiki
Revision as of 09:04, 6 August 2018 by AriosJentu (talk | contribs) (Created page with "__NOTOC__ {{Client function}} This function removes column from Custom Table View. == Syntax == <syntaxhighlight lang="lua"> nil CustomTableView:removeColumn([ccolumn/int Col...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function removes column from Custom Table View.

Syntax

nil CustomTableView:removeColumn([ccolumn/int Column])

Other Arguments


Example

Code Example
Code Example with "K" clicked

This example creates window with table view, here added some columns and lines (rows), changed indentation between lines, removed line, removed column, set selected line, and filling of cells. Bound K button for showing and hiding title panel of Table View:

local Window = CustomWindow.create(50, 50, 250, 220, "Example")
local TabView = CustomTableView.create(5, 25, 130, 40, false, Window)

TabView:addLine(21)
local nline = TabView:addLine(25)
TabView:addLine(21)
local line = TabView:addLine(28)
TabView:addLine(21)
TabView:addLine(31)
TabView:addLine(21)
TabView:addLine(35)
TabView:addLine(21)

TabView:removeLine(line)
TabView:setIndentation(5)
TabView:setSize(240, 190, false)

TabView:setSelectedLine(3)

TabView:addColumn("Example", 90)
TabView:addColumn("Removed", 90)
local col = TabView:addColumn("Saved", 90)
TabView:addColumn("Last", 90)

TabView:removeColumn("Removed")

for i = 1, TabView:getLinesCount() do
	for j = 1, TabView:getColumnsCount() do
		TabView:setCellText(i, j, i.." "..j)
	end
end

bindKey("k", "up", function()
	TabView:setTitleBarVisible(not TabView:getTitleBarVisible())
end)

Window:setColorScheme(Themes.Dark.Red)	

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets