You are here: Start » AVL.NET » Function Reference » Basic » Format » AVL.FormatPoint3DToString

AVL.FormatPoint3DToString

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
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

Name Type Range Default Description
inPointAvlNet.Point3D
inIntegerDigitCountint<0, INF>How many characters the integer part of the coordinates should have at least.
inFractionalDigitCountint<0, 100>3How many characters the fractional part of the coordinates should have. Default value: 3.
inDecimalMarkstring\".\"The symbol used to separate the integer part from the fractional part of the coordinates. Default value: ".".
inTrailingCharacterstring\"0\"Defines the trailing character. Default value: "0".
inForceSignPrintingboolFalseForces printing the signs of the numbers even if the number is positive. Default value: False.
inSuffixstring\"\"Defines a suffix. Generally it is an unit of value (e.g. mm). Default value: "".
inPrintBracketsboolTrueDetermines whether the brackets should be printed or not. Default value: True.
outStringstring

See also