You are here: Start » AVL.NET » Invoke.FormatPoint3DToString
Converts a 3D point to a string of format "(X, Y, Z)".
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void FormatPoint3DToString ( Avl.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 | |
|---|---|---|---|---|---|
![]()  | inPoint | Avl.Point3D | |||
![]()  | inIntegerDigitCount | int | <0, INF> | How many characters the integer part of the coordinates should have at least. | |
![]()  | inFractionalDigitCount | int | <0, 100> | 3 | How many characters the fractional part of the coordinates should have. Default value: 3. | 
![]()  | inDecimalMark | string | \".\" | The symbol used to separate the integer part from the fractional part of the coordinates. Default value: ".". | |
![]()  | inTrailingCharacter | string | \"0\" | Defines the trailing character. Default value: "0". | |
![]()  | inForceSignPrinting | bool | False | Forces printing the signs of the numbers even if the number is positive. Default value: False. | |
![]()  | inSuffix | string | \"\" | Defines a suffix. Generally it is an unit of value (e.g. mm). Default value: "". | |
![]()  | inPrintBrackets | bool | True | Determines whether the brackets should be printed or not. Default value: True. | |
![]()  | outString | string | 


