-= - Operator (Subtraction und Assignment)

Concerns

This operator converts the expressions to the left and right of the operator into numeric types and subtracts them.

Example

Dim V1 As Long

V1 := 10

V1 -= 20

Result:

V1 contains the value -10