FormatsAccountingAccount(Int32, Object, Object, Int32, Char) Method
Format the account based on the configuration digits.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string AccountingAccount(
int digits,
Object account,
Object prefix = null,
int paddingDigits = 0,
char paddingChar = '0'
)
Public Shared Function AccountingAccount (
digits As Integer,
account As Object,
Optional prefix As Object = Nothing,
Optional paddingDigits As Integer = 0,
Optional paddingChar As Char = "0"C
) As String
- digits Int32
- Accounting account digits.
- account Object
- Accounting account.
- prefix Object (Optional)
- Account prefix.
- paddingDigits Int32 (Optional)
- Complete the accounting account up to the number of digits indicated.
- paddingChar Char (Optional)
- Character that will be used to fill up to the indicated digits.
StringString with the the account formated.