Skip to content

UnemploymentRate

A property which indicates the employer’s state unemployment tax rate.

Syntax

value = object.UnemploymentRate

object.UnemploymentRate = value

object is a TaxControl instance.

value is a float variable or expression.

Details

Before calculating any SUI or FUTA taxes, the employer’s state unemployment tax rate should be set using this property. Enter the rate as a decimal number—for example, enter 3.1% as:

// using TaxControls;
CTaxControl tc = new CTaxControl();
tc.UnemploymentRate = 0.031;