[This is preliminary documentation and is subject to change.]

Onew-way converter that can indicate if value is null

Namespace: Tools.WindowsT.WPF.ConvertersT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public sealed class IsNullConverter : StronglyTypedConverter<Object, bool>
Visual Basic
Public NotInheritable Class IsNullConverter _
	Inherits StronglyTypedConverter(Of Object, Boolean)
Visual C++
public ref class IsNullConverter sealed : public StronglyTypedConverter<Object^, bool>
F#
[<SealedAttribute>]
type IsNullConverter =  
    class
        inherit StronglyTypedConverter<Object, bool>
    end
JScript
public final class IsNullConverter extends StronglyTypedConverter<Object, boolean>

Remarks

Converts null to true and non-null to false

Inheritance Hierarchy

System..::..Object
  Tools.WindowsT.WPF.ConvertersT..::..StronglyTypedConverter<(Of <(<'Object, Boolean>)>)>
    Tools.WindowsT.WPF.ConvertersT..::..IsNullConverter

See Also

Collapse/expand Version History

1.5.2

  • (Alpha) Class introduced