Edit

ExpressionValues.Constant.CreateConstantVector4 Method

Definition

Overloads

CreateConstantVector4(String)

Creates a named constant parameter of type Vector4.

CreateConstantVector4(String, Vector4)

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

CreateConstantVector4(String)

Creates a named constant parameter of type Vector4.

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

Parameters

paramName
String

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

Returns

Vector4Node.

Applies to

CreateConstantVector4(String, Vector4)

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

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

Parameters

paramName
String

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

value
Vector4

The value of the parameter.

Returns

Vector4Node.

Applies to