CrmDecimal.Value Field

banner art

Specifies the value of the attribute.

Syntax

[Visual Basic]
Public Field Value As Decimal

[C#]
public decimal Value;

[JScript]
public var Value : Decimal;

Remarks

This field is required when you set an attribute value.

Example

The following example shows how to set a decimal attribute value.

CrmDecimal dec = new CrmDecimal();
dec.Value = (decimal)10.1;

See Also

© 2007 Microsoft Corporation. All rights reserved.