GraphicsParameterTransform<TInput, TOutput> Constructor (GraphicsParameter<TInput>, Converter<TInput, TOutput>) |
Initializes a new instance with the specified parameters.
Namespace:
AGI.Foundation.Platforms
Assembly:
AGI.Foundation.Platforms.Graphics (in AGI.Foundation.Platforms.Graphics.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic GraphicsParameterTransform(
GraphicsParameter<TInput> parameter,
Converter<TInput, TOutput> callback
)
Public Sub New (
parameter As GraphicsParameter(Of TInput),
callback As Converter(Of TInput, TOutput)
)
public:
GraphicsParameterTransform(
GraphicsParameter<TInput>^ parameter,
Converter<TInput, TOutput>^ callback
)
new :
parameter : GraphicsParameter<'TInput> *
callback : Converter<'TInput, 'TOutput> -> GraphicsParameterTransform
Parameters
- parameter
- Type: AGI.Foundation.Platforms.Advanced.GraphicsParameter<TInput>
The parameter to transform. - callback
- Type: System.Converter<TInput, TOutput>
The transformation function.
See Also