CrmFloat.Value Field

banner art

Specifies the value of the attribute.

Syntax

[Visual Basic]
Public Field Value As Single

[C#]
public float Value;

[JScript]
public var Value : float;

Remarks

This field is required when you set an attribute value.

Example

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

CrmFloat f = new CrmFloat();
f.Value = (float)10.1;

See Also

© 2007 Microsoft Corporation. All rights reserved.