CrmDecimal.IsNullSpecified Field

banner art

Specifies whether you are intentionally setting the attribute to a null value.

Syntax

[Visual Basic]
Public Field IsNullSpecified As Boolean

[C#]
public bool IsNullSpecified;

[JScript]
public var IsNullSpecified : Boolean;

Remarks

To set an attribute 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.

CrmDecimal dec = new CrmDecimal();
dec.IsNull = true;
dec.IsNullSpecified = true;

See Also

© 2007 Microsoft Corporation. All rights reserved.