Class
DoubleScaleConverter

Represents a custom IValueConverter implementation that takes a double value and multiplies it by a given scale factor.

Definition

Namespace:Telerik.UI.Xaml.Controls.Primitives.HubTile

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class DoubleScaleConverter : IValueConverter

Inheritance: objectDoubleScaleConverter

Implements: IValueConverter

Constructors

DoubleScaleConverter()

Declaration

cs-api-definition
public DoubleScaleConverter()

Properties

Scale

Gets or sets the scale used to multiply the provided System.Double value.

Declaration

cs-api-definition
public double Scale { get; set; }

Property Value

double

Methods

Convert(object, Type, object, string)

Converts the specified value.

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, string language)

Parameters

value

object

The value.

targetType

Type

Type of the target.

parameter

object

The parameter.

language

string

The language.

Returns

object

ConvertBack(object, Type, object, string)

ConvertBack is not a valid operation.

Declaration

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, string language)

Parameters

value

object

The value.

targetType

Type

Type of the target.

parameter

object

The parameter.

language

string

The language.

Returns

object

Exceptions

NotImplementedException

ConvertBack is not a valid operation for this converter.