CaseItem
Overview
CaseItem is a storage class to hold a single case item block, a combination of 1 or more values with a statement. All case statements are made up of 1 or more instances of this class. To pass ranges, use the RangeValue as a value.
Location
- Reference: RemObjects.Elements.Cirrus.dll
- Namespace: RemObjects.Elements.Cirrus.Statements
Properties
Body
The body
property Body: Statement read write;
Statement Body { get; set; }
var Body: Statement { get{} set{} }
Statement Body { __get; __set; }
Property Body() As Statement
Values
Possible values
property Values: List<Value> read;
List<Value> Values { get; }
var Values: List<Value> { get{} }
List<Value> Values { __get; }
ReadOnly Property Values() As List<Value>
Instance Methods
constructor
Constructor that does not initialize any fields.
constructor
CaseItem()
init()
CaseItem()
Sub New()
Initializer constructor; this constructor allows you to pass a single value
Parameters:
- abody: Body of this case element
- aValue: case value
Initializer constructor; this constructor allows you to pass multiple values
Parameters:
- abody: Body for this case item.
- aValues: Values for this case item.