Formats a number with units into a string.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 21.0.0.0 (21.1.1.109)
Since:
2014
Syntax
| C# |
|---|
[ObsoleteAttribute("This method is deprecated in Revit 2021 and may be removed in a future version of Revit. Please use the `Format(Units, ForgeTypeId, double, bool, FormatValueOptions)` overload instead.")]
public static string Format(
Units units,
UnitType unitType,
double value,
bool forEditing,
FormatValueOptions formatValueOptions
) |
| Visual Basic |
|---|
<ObsoleteAttribute("This method is deprecated in Revit 2021 and may be removed in a future version of Revit. Please use the `Format(Units, ForgeTypeId, double, bool, FormatValueOptions)` overload instead.")> _
Public Shared Function Format ( _
units As Units, _
unitType As UnitType, _
value As Double, _
forEditing As Boolean, _
formatValueOptions As FormatValueOptions _
) As String |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This method is deprecated in Revit 2021 and may be removed in a future version of Revit. Please use the `Format(Units, ForgeTypeId, double, bool, FormatValueOptions)` overload instead.")]
public:
static String^ Format(
Units^ units,
UnitType unitType,
double value,
bool forEditing,
FormatValueOptions^ formatValueOptions
) |
Parameters
- units
- Type: Autodesk.Revit.DB..::..Units
The units formatting settings, typically obtained from Document.GetUnits().
- unitType
- Type: Autodesk.Revit.DB..::..UnitType
The unit type of the value to format.
- value
- Type: System..::..Double
The value to format, in Revit's internal units.
- forEditing
- Type: System..::..Boolean
True if the formatting should be modified as necessary so that the formatted string can be successfully parsed, for example by suppressing digit grouping. False if unmodified settings should be used, suitable for display only.
- formatValueOptions
- Type: Autodesk.Revit.DB..::..FormatValueOptions
Additional formatting options.
Return Value
The formatted string.
Exceptions
See Also