get thickness of a floor

Anonymous

get thickness of a floor

Anonymous
Not applicable

I would get the thikness of a floor. I found Something in the builtinparameters but i Don't understant how it works and how to get the value in a double to use it.

 

if someone can help me

0 Likes
Reply
614 Views
1 Reply
Reply (1)

naveen.kumar.t
Autodesk Support
Autodesk Support

Hi @Anonymous .

Floor floor;               
Parameter param = floor.get_Parameter(BuiltInParameter.FLOOR_ATTR_THICKNESS_PARAM); 
                if(param!=null)
                {                                        
                    double thickness = param.AsDouble();
                }

Naveen Kumar T
Developer Technical Services
Autodesk Developer Network

0 Likes