Revision [14385]

This is an old revision of KeyPgOpCombineMultiply made by CountingPine on 2009-08-29 21:55:15.

 

Operator *= (Multiply and Assign)


Multiplies and assigns a value to a variable

Syntax:
Usage:
lhs *= rhs

Parameters:
lhs
The variable to assign to.
T1
Any numeric type.
rhs
The value to multiply lhs by.
T2
Any numeric type.

Description:
This operator multiplies and assigns a value to a variable. It is functionally equivalent to:
lhs = lhs KeyPgOpMultiply * rhs
The right-hand side expression (rhs) will be converted to the left-hand side type (T1).
This operator can be overloaded for user-defined types.

Examples:
Dim n As Double
n = 6
n *= 2
Print n
Sleep

Output:
12


Dialect Differences:
Differences from QB:
See also:
Back to Assignment Operators
Back to Operators
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki



sf.net phatcode