CrmBoolean.Value Field
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