Edit

ExpressionValues.Constant.CreateConstantMatrix3x2 Method

Definition

Overloads

CreateConstantMatrix3x2(String)

Creates a named constant parameter of type Matrix3x2.

CreateConstantMatrix3x2(String, Matrix3x2)

Creates a named constant parameter of type Matrix3x2, initialized with the specified value.

CreateConstantMatrix3x2(String)

Creates a named constant parameter of type Matrix3x2.

public static CommunityToolkit.WinUI.Animations.Expressions.Matrix3x2Node CreateConstantMatrix3x2(string paramName);
static member CreateConstantMatrix3x2 : string -> CommunityToolkit.WinUI.Animations.Expressions.Matrix3x2Node
Public Shared Function CreateConstantMatrix3x2 (paramName As String) As Matrix3x2Node

Parameters

paramName
String

The name that will be used to refer to the parameter at a later time.

Returns

Matrix3x2Node.

Applies to

CreateConstantMatrix3x2(String, Matrix3x2)

Creates a named constant parameter of type Matrix3x2, initialized with the specified value.

public static CommunityToolkit.WinUI.Animations.Expressions.Matrix3x2Node CreateConstantMatrix3x2(string paramName, System.Numerics.Matrix3x2 value);
static member CreateConstantMatrix3x2 : string * System.Numerics.Matrix3x2 -> CommunityToolkit.WinUI.Animations.Expressions.Matrix3x2Node
Public Shared Function CreateConstantMatrix3x2 (paramName As String, value As Matrix3x2) As Matrix3x2Node

Parameters

paramName
String

The name that will be used to refer to the parameter at a later time.

value
Matrix3x2

The value of the parameter.

Returns

Matrix3x2Node.

Applies to