Gets the tax rate to be collected for this Tax authority. 4.5% tax is represented as 4.5.
Namespace: Asi.iBO.SystemConfigAssembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0
Syntax
| C# |
|---|
public double TaxRate { get; } |
| Visual Basic |
|---|
Public ReadOnly Property TaxRate As Double
Get |
| Visual C++ |
|---|
public:
property double TaxRate {
double get ();
} |
Field Value
Rates are stored in the database (column TAX_RATE) as a percent -- that is, a 4.5% tax is stored as the
value 4.5. But this
TaxRate property returns such a rate as 0.045.
See Also