You are here: Start » AVL.NET » AVL.FormatPoint3DToString(AvlNet.Point3D, int, int, string, string, bool, string, bool, string)

AVL.FormatPoint3DToString(AvlNet.Point3D, int, int, string, string, bool, string, bool, string)

Converts a 3D point to a string of format "(X, Y, Z)".

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void FormatPoint3DToString(
	AvlNet.Point3D inPoint,
	int inIntegerDigitCount,
	int inFractionalDigitCount,
	string inDecimalMark,
	string inTrailingCharacter,
	bool inForceSignPrinting,
	string inSuffix,
	bool inPrintBrackets,
	out string outString
)

Parameters

inPoint
Type: AvlNet.Point3D
inIntegerDigitCount
Type: System.Int32
How many characters the integer part of the coordinates should have at least
inFractionalDigitCount
Type: System.Int32
How many characters the fractional part of the coordinates should have
inDecimalMark
Type: System.String
The symbol used to separate the integer part from the fractional part of the coordinates
inTrailingCharacter
Type: System.String
Defines the trailing character
inForceSignPrinting
Type: System.Boolean
Forces printing the signs of the numbers even if the number is positive
inSuffix
Type: System.String
Defines a suffix. Generally it is an unit of value (eg. mm)
inPrintBrackets
Type: System.Boolean
Determines whether the brackets should be printed or not
outString
Type: System.String

See also