Table of Contents

Interface INullableWidget<T>

Namespace
The.Web.Widgets
Assembly
Instagile.Web.Client.dll

A data-entry control with a testable null state.

public interface INullableWidget<T> : IWidget<T>

Type Parameters

T
Inherited Members

Properties

AllowNulls

If not set, null-state data will be coerced to a non-null value or input will be prevented; IsNull will never be true.

bool AllowNulls { get; set; }

Property Value

bool

IsNull

True if entered data is in the null state.

bool IsNull { get; }

Property Value

bool