ToleranceTryParseRepresentation Method
|
Tries to convert the specified string representation of a tolerance to its tolerance entity equivalent.
A return value indicates whether the conversion succeeded or failed.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool TryParseRepresentation(
string s,
out Tolerance result
)
Public Shared Function TryParseRepresentation (
s As String,
<OutAttribute> ByRef result As Tolerance
) As Boolean
public:
static bool TryParseRepresentation(
String^ s,
[OutAttribute] Tolerance^% result
)
static member TryParseRepresentation :
s : string *
result : Tolerance byref -> bool
STATIC METHOD TryParseRepresentation(
s AS STRING,
result OUT Tolerance
) AS LOGIC
Parameters
- s
- Type: SystemString
A string that represents the tolerance to convert. - result
- Type: DXFReaderNET.EntitiesTolerance
If the conversion has been successful, it contains the tolerance entity equivalent to the string representation; otherwise, null.
Return Value
Type:
BooleanTrue if the string was converted successfully; otherwise, false.
See Also