Method Format
Format(Int32, Single, String)
Padd a number from left.
Declaration
public static string Format(int numFracDigits, float f, string col)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | numFracDigits | Number of digits in fraction part - must be 0 or 1 or 2. |
System.Single | f | Number to be formatted. |
System.String | col | Column name (used for deciding on length). |
Returns
Type | Description |
---|---|
System.String | Formatted string. |
Format(Int32, Double, String)
Declaration
public static string Format(int numFracDigits, double f, string col)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | numFracDigits | |
System.Double | f | |
System.String | col |
Returns
Type | Description |
---|---|
System.String |
Format(Int32, String)
Pad a number from left.
Declaration
public static string Format(int n, string col)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | n | Number to be formatted. |
System.String | col | Column name (used for deciding on length). |
Returns
Type | Description |
---|---|
System.String | Formatted string. |
Format(String, String)
Pad a string from right.
Declaration
public static string Format(string s, string col)
Parameters
Type | Name | Description |
---|---|---|
System.String | s | String to be formatted. |
System.String | col | Column name (used for deciding on length). |
Returns
Type | Description |
---|---|
System.String | Formatted string. |