Math.Mod

number Math.Mod ( 

number Num1,

number Num2 )

Example 1

mod_num = Math.Mod(10, 3);

Calculates the modulus of  10 / 3 and returns the number 1 in a variable called "mod_num."

See also:  Related Actions