Revit.SDK.Samples.NewRebar.CS.RebarShapeDef.AllParameterTypes C# (CSharp) Method

AllParameterTypes() public method

Return all the parameter types supported by RebarShape definition.
public AllParameterTypes ( ) : List
return List
        public List<Type> AllParameterTypes()
        {
            List<Type> types = new List<Type>();
            types.Add(typeof(RebarShapeParameterDouble));
            types.Add(typeof(RebarShapeParameterFormula));
            return types;
        }