DataGridViewCellStyle.IsNullValueDefault Property

Definition

Gets a value indicating whether the NullValue property has been set.

public:
 property bool IsNullValueDefault { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsNullValueDefault { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsNullValueDefault : bool
Public ReadOnly Property IsNullValueDefault As Boolean

Property Value

true if the value of the NullValue property is the default value; otherwise, false.

Attributes

Remarks

Use this property to determine whether the NullValue property has been explicitly set without having to store its default value for comparison. This is useful because the NullValue property has a non-empty default value, unlike most other DataGridViewCellStyle properties, which have default values such as null, Empty, or NotSet.

Applies to

See also