To modify a tax, you must perform the following:
Here is a code example:
public
static
void
ModifyTax(Guid taxId, AddressType type)
{
OrdersManager ordersManager = OrdersManager.GetManager();
Tax tax = ordersManager.GetTax(taxId);
tax.AddressType = type;
ordersManager.SaveChanges();
}