I just stated using Dynamo and Python. I created this python script to only extract the thickness information out of my chosen element (foundation) but when i run it, i get an error that floor object has no attribute Thickness.
This is my python script:
import sys
import clr
clr.AddReference(‘ProtoGeometry’)
from Autodesk.DesignScript.Geometry import *
The best thing to do is install Revit Lookup.
Select the element in Revit and open the addin.
After that you can check the parameter Thickness, i guess it is a builtin parameter.
Than you need to use the code :
elem.get_Parameter(BuiltinParameter.###).
In the addin you can also see what you need to use after the dot, .AsInteger () for example.