Skip to main content

ObjectConverters Class

Definition

Assembly:Avalonia.Base
Package:Avalonia

Provides a set of useful Avalonia.Data.Converters.IValueConverters for working with objects.

public class ObjectConverters

Inheritance: object -> ObjectConverters

Fields

NameDescription
EqualA value converter that returns true if the input object is equal to a parameter object.
IsNotNullA value converter that returns true if the input object is not null.
IsNullA value converter that returns true if the input object is a null reference.
NotEqualA value converter that returns true if the input object is not equal to a parameter object.

Equal Field

A value converter that returns true if the input object is equal to a parameter object.

public Avalonia.Data.Converters.IValueConverter Equal

IsNotNull Field

A value converter that returns true if the input object is not null.

public Avalonia.Data.Converters.IValueConverter IsNotNull

IsNull Field

A value converter that returns true if the input object is a null reference.

public Avalonia.Data.Converters.IValueConverter IsNull

NotEqual Field

A value converter that returns true if the input object is not equal to a parameter object.

public Avalonia.Data.Converters.IValueConverter NotEqual