You are here: Start » FIL.NET » Invoke.FormatPoint2DToString
Converts a 2D point to a string of format "(X, Y)".
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void FormatPoint2DToString ( Fil.Point2D 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 | Fil.Point2D | |||
![]() | 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 |