Gets the tax rate to be collected for this Tax authority. 4.5% tax is represented as 4.5.

Namespace:  Asi.iBO.SystemConfig
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public double TaxRate { get; }
Visual Basic (Declaration)
Public ReadOnly Property TaxRate As Double
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