Scripting Thickness property in Rhino 6

Hello,
Is there a way yet to use Python to programmatically set the thickness property on surfaces? I did a quick search through the help and didn’t see any methods available yet. I understand Rhino 6 is still a WIP, so that the function may not be implemented yet in the rhinoscriptsyntax. Just figured I’d ask.

Thanks

I’ve added a wish item for this - thanks.

https://mcneel.myjetbrains.com/youtrack/issue/RH-35719

Just wanted to update that I figured it out following the comments in youtrack.

def SetThick():
    objs = rs.ObjectsByType(24,False)
    for obj in objs:
        objref = rs.coercerhinoobject(obj)
        objref.SetCustomRenderMeshParameter(Rhino.Render.CustomRenderMeshProvider.ThickeningId,"On",True)
        objref.SetCustomRenderMeshParameter(Rhino.Render.CustomRenderMeshProvider.ThickeningId,"Distance",0.5)