CrmBoolean.IsNull Field
Specifies that the field value is a null value.
Syntax
[Visual Basic]
Public Field IsNull As Boolean
[C#]
public bool IsNull;
[JScript]
public var IsNull : Boolean;
Remarks
To set an attribute value to a null value, you must set both the IsNull and IsNullSpecified fields to true.
Example
The following example shows how to set the attribute to a null value.
CrmBoolean boolean = new CrmBoolean();
boolean.IsNull = true;
boolean.IsNullSpecified = true;
See Also