AutoGeneratedField.ConvertEmptyStringToNull Property

Definition

Gets or sets a value indicating whether empty string ("") values are converted to null when the field values are retrieved from the data source.

public:
 virtual property bool ConvertEmptyStringToNull { bool get(); void set(bool value); };
public override bool ConvertEmptyStringToNull { get; set; }
member this.ConvertEmptyStringToNull : bool with get, set
Public Overrides Property ConvertEmptyStringToNull As Boolean

Property Value

Always returns true.

Exceptions

An attempt is made to set this property.

Remarks

Sometimes a field's value is an empty string ("") in the data source. The ConvertEmptyStringToNull property is used to indicate whether empty string values are converted to null before being displayed in an AutoGeneratedField.

Note

This version of the property has been implemented to always return true. It is not possible to set this property.

Applies to

See also