Binding.DataSourceNullValue Property

Definition

Gets or sets the value to be stored in the data source if the control value is null or empty.

public:
 property System::Object ^ DataSourceNullValue { System::Object ^ get(); void set(System::Object ^ value); };
public object DataSourceNullValue { get; set; }
public object? DataSourceNullValue { get; set; }
member this.DataSourceNullValue : obj with get, set
Public Property DataSourceNullValue As Object

Property Value

The Object to be stored in the data source when the control property is empty or null. The default is DBNull for value types and null for non-value types.

Remarks

You can use the NullValue property to specify the value displayed in a bound control when the data source contains DBNull.

Applies to

See also