ObjectConverters Class
Definition
Provides a set of useful Avalonia.Data.Converters.IValueConverters for working with objects.
public class ObjectConverters
Fields
| Name | Description |
|---|---|
| Equal | A value converter that returns true if the input object is equal to a parameter object. |
| IsNotNull | A value converter that returns true if the input object is not null. |
| IsNull | A value converter that returns true if the input object is a null reference. |
| NotEqual | A 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