Field.SetFloat(Object, Single) Method

Definition

Sets the value of a field as a float on the specified object.

[Android.Runtime.Register("setFloat", "(Ljava/lang/Object;F)V", "")]
public void SetFloat (Java.Lang.Object? obj, float f);
[<Android.Runtime.Register("setFloat", "(Ljava/lang/Object;F)V", "")>]
member this.SetFloat : Java.Lang.Object * single -> unit

Parameters

obj
Object

the object whose field should be modified

f
Single

the new value for the field of obj being modified

Attributes

Exceptions

if the object is null and the field is non-static

if the object is not compatible with the declaring class

if this field is not accessible

Remarks

Sets the value of a field as a float on the specified object. This method is equivalent to set(obj, fObj), where fObj is a Float object and fObj.floatValue() == f.

Java documentation for java.lang.reflect.Field.setFloat(java.lang.Object, float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to