FPointParse Method

Parse a coordinate string and return its FPoint representation.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FPoint Parse(
	string coordinate,
	bool allowNull = false
)

Parameters

coordinate  String
The coordinate string to parse.
allowNull  Boolean  (Optional)
Value indicating whether to allow a null return value if the input string was invalid.

Return Value

FPoint
Newly created FPoint value representing the caller's input, if that input was legal or allowNull was false. Otherwise, a null value.

See Also