CrmMoney.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 money attribute value.

CrmMoney money = new CrmMoney();
money.Value = (decimal)10.00;

See Also

© 2007 Microsoft Corporation. All rights reserved.