Język

ColorMatrix.Set Method

Definition

Overloads

Name Description
Set(Single[])

Assign the array of floats into this matrix, copying all of its values.

Set(ColorMatrix)

Assign the src colormatrix into this matrix, copying all of its values.

Set(Single[])

Assign the array of floats into this matrix, copying all of its values.

[Android.Runtime.Register("set", "([F)V", "GetSet_arrayFHandler")]
public virtual void Set(float[]? src);
[<Android.Runtime.Register("set", "([F)V", "GetSet_arrayFHandler")>]
abstract member Set : single[] -> unit
override this.Set : single[] -> unit

Parameters

src
Single[]

The array of values to copy into this matrix.

Attributes

Remarks

Copies all values from src into this matrix.

Java documentation for android.graphics.ColorMatrix.set(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

Set(ColorMatrix)

Assign the src colormatrix into this matrix, copying all of its values.

[Android.Runtime.Register("set", "(Landroid/graphics/ColorMatrix;)V", "GetSet_Landroid_graphics_ColorMatrix_Handler")]
public virtual void Set(Android.Graphics.ColorMatrix? src);
[<Android.Runtime.Register("set", "(Landroid/graphics/ColorMatrix;)V", "GetSet_Landroid_graphics_ColorMatrix_Handler")>]
abstract member Set : Android.Graphics.ColorMatrix -> unit
override this.Set : Android.Graphics.ColorMatrix -> unit

Parameters

src
ColorMatrix

The source matrix whose values are copied.

Attributes

Remarks

Copies all values from src into this matrix.

Java documentation for android.graphics.ColorMatrix.set(android.graphics.ColorMatrix).

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