[This is preliminary documentation and is subject to change.]
Onew-way converter that can indicate if value is not null
Namespace: Tools.WindowsT.WPF.ConvertersTAssembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public sealed class IsNotNullConverter : StronglyTypedConverter<Object, bool> |
| Visual Basic |
|---|
Public NotInheritable Class IsNotNullConverter _ Inherits StronglyTypedConverter(Of Object, Boolean) |
| Visual C++ |
|---|
public ref class IsNotNullConverter sealed : public StronglyTypedConverter<Object^, bool> |
| F# |
|---|
[<SealedAttribute>] type IsNotNullConverter = class inherit StronglyTypedConverter<Object, bool> end |
| JScript |
|---|
public final class IsNotNullConverter extends StronglyTypedConverter<Object, boolean> |
Remarks
Converts null to false and non-null to true
Inheritance Hierarchy
System..::..Object
Tools.WindowsT.WPF.ConvertersT..::..StronglyTypedConverter<(Of <(<'Object, Boolean>)>)>
Tools.WindowsT.WPF.ConvertersT..::..IsNotNullConverter
Tools.WindowsT.WPF.ConvertersT..::..StronglyTypedConverter<(Of <(<'Object, Boolean>)>)>
Tools.WindowsT.WPF.ConvertersT..::..IsNotNullConverter
See Also
Version History
1.5.2
- (Alpha) Class introduced