This method of the Variant Class replaces a value referenced by a VT_BYREF|VT_R4 Variant object.
public native void putFloatRef(float val);
Note This method can also be used to initialize a Variant, but the preferred method is to use the following expression:
new Variant(Variant.VariantByref|Variant.VariantFloat,val)
val | The new value. |