• Can't change DTree_Node text color
    7 replies, posted
I would like to change the color of my DTree_Node text to get it white but SetTextColor() doesn't work.. Do you have an idea or a function for that ? And if possible to change the text font too
[QUOTE=Nogitsu;52528678]I would like to change the color of my DTree_Node text to get it white but SetTextColor() doesn't work.. Do you have an idea or a function for that ? And if possible to change the text font too[/QUOTE] MyDTreeNodeElement.Label:SetTextColor( clr ) DTreeNode uses DTreeNode_Buttom, derived from DButton, derived from DLabel.
Thanks it worked but I can't do the same with a DListView line any idea ?
[QUOTE=Nogitsu;52531603]Thanks it worked but I can't do the same with a DListView line any idea ?[/QUOTE] [lua] DListViewLine.Columns[ ColumnIndex ]:SetTextColor( clr ) [/lua] Unfortunately, DListViewLabel is internal so there is no documentation on it, it is however stated to be derived from DLabel, so you should be fine using the above. DListViewLine is the value returned by [img]http://wiki.garrysmod.com/favicon.ico[/img] [url=http://wiki.garrysmod.com/page/DListView/AddLine]DListView:AddLine[/url]
[QUOTE=James xX;52531662][lua] DListViewLine.Columns[ ColumnIndex ]:SetTextColor( clr ) [/lua] Unfortunately, DListViewLine is internal so there is no documentation on it, it is however stated to be derived from DLabel, so you should be fine using the above. DListViewLine is the value returned by [img]http://wiki.garrysmod.com/favicon.ico[/img] [url=http://wiki.garrysmod.com/page/DListView/AddLine]DListView:AddLine[/url][/QUOTE] The source is still available. [url]https://github.com/Facepunch/garrysmod/blob/master/garrysmod/lua/vgui/dlistview_line.lua[/url]
[QUOTE=Sean Bean;52531667]The source is still available. [url]https://github.com/Facepunch/garrysmod/blob/master/garrysmod/lua/vgui/dlistview_line.lua[/url][/QUOTE] Sorry I meant DListViewLabel.
[QUOTE=James xX;52531670]Sorry I meant DListViewLabel.[/QUOTE] [url]https://github.com/Facepunch/garrysmod/blob/784cd57576d85712fa13a7cea3a9523b4df966b0/garrysmod/lua/vgui/dlistview_line.lua#L2-L24[/url]
Thanks you ames you're awesome ! And thanks Sean but I already knew where were the source code, but it doesn't help me anyway.
Sorry, you need to Log In to post a reply to this thread.