Message 1 of 2
Set the drop down box for the parameter value field with tool tips

Not applicable
12-27-2016
11:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am new to Revit API development
Reference to the below code snap its possible to set the drop down box for the parameter value field with tool tips !?
*Appreciate the explanation with a small code snap,possible with below example.
FamilyManager familyMgr = doc.FamilyManager; FamilyParameter param = familyMgr.get_Parameter( "Width" ); if( null == param ) { param = doc.FamilyManager.AddParameter( "Width", BuiltInParameterGroup.PG_GEOMETRY, ParameterType.Length, true ); } familyMgr.Set( param, 0.2 ); // set the value
Thanks,
Navan.