Formatting Unit Strings

What methods can I use to create a properly formatted unit string according to the project units?

If the value you are formatting resides in a Revit parameter, the answer is simple and a complete solution immediately provided by the Revit API. On one hand, the Parameter class provides the following public methods to read and write its parameter value:

On the other hand, you can ask the parameter to return its current value as a preformatted string using the current unit settings:

It also provides access to set the value making use of such a formatted string with units:

If the value you wish to format does not reside in a parameter, you do not have access to these methods. In that case, you might be able to temporarily hijack some existing parameter on an existing element and use that for your formatting task.

Unfortunately, you cannot simply create an own parameter for temporary use as a formatting helper, because the constructor is for internal use only. This is due to the fact that a parameter cannot live on its own; it is linked to a definition and needs to be hooked up properly in the Revit database system to work.

If you wish to avoid the hijacking, you could create an own shared parameter for an element category that occurs only once in the project and use that. How to do this is discussed the post on adding a shared parameter to a DWG file, and the Revit API introduction labs provide samples for creating and analysing parameters in Revit.

Finally, for full control over the formatting details, you can query Revit for the current unit settings using the ProjectUnit class and use that information to do the formatting yourself as you see fit. Querying the unit settings is demonstrated by the ProjectUnit SDK sample.