CornerRadiusToThicknessConverter.Convert Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts a CornerRadius value to a Thickness value, while also extracting the fields specified by ConversionKind (leaving others set to 0).
This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
public:
virtual Platform::Object ^ Convert(Platform::Object ^ value, TypeName targetType, Platform::Object ^ parameter, Platform::String ^ language) = Convert;
IInspectable Convert(IInspectable const& value, TypeName const& targetType, IInspectable const& parameter, winrt::hstring const& language);
public object Convert(object value, System.Type targetType, object parameter, string language);
Public Function Convert (value As Object, targetType As Type, parameter As Object, language As String) As Object
Parameters
- value
-
Object
Platform::Object
IInspectable
The source CornerRadius being passed to the target.
The type of the target property. Part of the IValueConverter.Convert interface method, but not used.
- parameter
-
Object
Platform::Object
IInspectable
An optional parameter to be used in the converter logic. Part of the IValueConverter.Convert interface method, but not used.
- language
-
String
Platform::String
winrt::hstring
The language of the conversion. Part of the IValueConverter.Convert interface method, but not used.
Returns
The converted Thickness value to be passed to the target dependency property.