The Maxon SDK Team is currently short staffed due to the winter holidays. No forum support is being provided between 15/12/2025 and 5/1/2026. For details see Maxon SDK 2025 Winter Holidays.
Setting the width of a treeview column
-
How can I set the width of a treeview?
I have only one column, but in the view I see 2 columns?

layout = c4d.BaseContainer() layout.SetInt32(ID_NAME, c4d.LV_USERTREE) self._treegui.SetLayout(1, layout) -
Solved.
def GetColumnWidth(self, root, userdata, obj, col, area):
return 200 # All have the same initial width -