Share via


CrmBoolean.Value Field

banner art

Specifies the value of the attribute.

Syntax

[Visual Basic]
Public Field Value As Boolean

[C#]
public bool Value;

[JScript]
public var Value : Boolean;

Remarks

This field is required when you set an attribute value.

Example

The following example shows how to set the attribute value to true.

CrmBoolean boolean = new CrmBoolean();
boolean.Value = true;

See Also

© 2007 Microsoft Corporation. All rights reserved.