Parses a formatted string into a number with units if possible.
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 `TryParse(Units, ForgeTypeId, string, ValueParsingOptions, out double)` overload instead.")]
public static bool TryParse(
Units units,
UnitType unitType,
string stringToParse,
ValueParsingOptions valueParsingOptions,
out double value
) |
| Visual Basic |
|---|
<ObsoleteAttribute("This method is deprecated in Revit 2021 and may be removed in a future version of Revit. Please use the `TryParse(Units, ForgeTypeId, string, ValueParsingOptions, out double)` overload instead.")> _
Public Shared Function TryParse ( _
units As Units, _
unitType As UnitType, _
stringToParse As String, _
valueParsingOptions As ValueParsingOptions, _
<OutAttribute> ByRef value As Double _
) As Boolean |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This method is deprecated in Revit 2021 and may be removed in a future version of Revit. Please use the `TryParse(Units, ForgeTypeId, string, ValueParsingOptions, out double)` overload instead.")]
public:
static bool TryParse(
Units^ units,
UnitType unitType,
String^ stringToParse,
ValueParsingOptions^ valueParsingOptions,
[OutAttribute] double% value
) |
Return Value
True if the string can be parsed, false otherwise.
Exceptions
See Also