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

AVL.FormatLocationToString

Converts a location to a string of format "(X, Y)".

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FormatLocationToString
(
	AvlNet.Location inLocation,
	int inDigitCount,
	string inTrailingCharacter,
	bool inForceSignPrinting,
	string inSuffix,
	int inSystemBase,
	bool inPrintBrackets,
	out string outString
)

Parameters

Name Type Range Default Description
inLocationAvlNet.Location
inDigitCountint<0, INF>How many characters the output coordinate should have at least.
inTrailingCharacterstring\"0\"Defines the trailing character. Default value: "0".
inForceSignPrintingboolFalseForces printing the signs of the coordinates 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: "".
inSystemBaseint<2, 16>10The base of the numeral system. Default value: 10.
inPrintBracketsboolTrueDetermines whether the brackets should be printed or not. Default value: True.
outStringstring

See also