All components display as "Old"

I added a new method to the base component that can toggle the Old/Legacy flag on or off

.ToggleObsolete()

Python Example:

import ghpythonlib as ghlib

c = ghlib.component._get_active_component()
c.ToggleObsolete(False)

CSharp Example:

((dynamic)Component).ToggleObsolete(false);

ToggleObsolete.gh (3.0 KB)

1 Like