| DelegateParameterBindingTComputeParameter Property |
Get or sets a method that computes the new value for the effect parameter.
Namespace: DigitalRune.Graphics.EffectsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public Func<DelegateParameterBinding<T>, RenderContext, T> ComputeParameter { get; set; }
Public Property ComputeParameter As Func(Of DelegateParameterBinding(Of T), RenderContext, T)
Get
Set
public:
property Func<DelegateParameterBinding<T>^, RenderContext^, T>^ ComputeParameter {
Func<DelegateParameterBinding<T>^, RenderContext^, T>^ get ();
void set (Func<DelegateParameterBinding<T>^, RenderContext^, T>^ value);
}
member ComputeParameter : Func<DelegateParameterBinding<'T>, RenderContext, 'T> with get, set
Property Value
Type:
FuncDelegateParameterBindingT,
RenderContext,
TThe method that computes the new value for the effect parameter.
Exceptions Remarks
The input parameters of this method are the
DelegateParameterBindingT and
the render context. The method must return the new parameter value.
See Also