Message 1 of 3
Number Risers Parameter

Not applicable
10-06-2019
04:15 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have the problem that I cannot see the response of the parameter Number of Risers (StorageType Integer) for the laddder. this is the code
string GetParameterValueString(Element e, BuiltInParameter a)
{
Parameter p = element.get_Parameter(a);
string z = string.Empty;
if (null != p)
{
switch (p.StorageType)
{
case StorageType.Integer:
z = p.AsInteger().ToString();
break;
}
z = "=" + z;
}
return z;
}
I get nothing as an answer, I appreciate your help