XamlEffectSetter<T> Delegate

Definition

A delegate that represents a custom effect setter that can be applied to a XamlCompositionBrush instance

public delegate void XamlEffectSetter<in T>(T value) where T : struct;
type XamlEffectSetter<'T (requires 'T : struct)> = delegate of 'T -> unit
Public Delegate Sub XamlEffectSetter(Of In T)(value As T)

Type Parameters

T

The type of property value to set

This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.

Parameters

value
T

The effect target value

Applies to