Class
StringCaseConverter

Represents a converter that changes the letter case of the provided System.String value.

Definition

Namespace:Telerik.UI.Xaml.Controls.Primitives

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class StringCaseConverter : IValueConverter

Inheritance: objectStringCaseConverter

Implements: IValueConverter

Constructors

StringCaseConverter()

Declaration

cs-api-definition
public StringCaseConverter()

Properties

CaseMode

Gets or sets the StringCaseMode value that specifies which letter case to be used.

Declaration

cs-api-definition
public StringCaseMode CaseMode { get; set; }

Property Value

StringCaseMode

Methods

Convert(object, Type, object, string)

Converts a string to upper/lower case depending on the value of the CaseMode property.

Declaration

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

Parameters

value

object

targetType

Type

parameter

object

language

string

Returns

object

ConvertBack(object, Type, object, string)

Not implemented.

Declaration

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

Parameters

value

object

targetType

Type

parameter

object

language

string

Returns

object