FieldValue
Overview
FieldValue points to an instance field on a value. It's used to access regular (non-static) fields. The instance parameter is the value you access this field on. The aOwnerType parameter is the type to look for the field on, as that constructor will call the GetField api on IType.
Location
- Reference: RemObjects.Elements.Cirrus.dll
- Namespace: RemObjects.Elements.Cirrus.Values
- Ancestry: Value | FieldValue
constructor
Create a new instance of this class
constructor
FieldValue()
init()
FieldValue()
Sub New()
Create a new instance of this class
constructor(aInstance: Value; aField: IField)
FieldValue(Value aInstance, IField aField)
init(_ aInstance: Value, _ aField: IField)
FieldValue(Value aInstance, IField aField)
Sub New(aInstance As Value, aField As IField)
Parameters:
- aInstance: Instance value
- aField: Field on this value
Create a new instance of this class
constructor(aInstance: Value; aType: IType; aFieldName: String)
FieldValue(Value aInstance, IType aType, String aFieldName)
init(_ aInstance: Value, _ aType: IType, _ aFieldName: String)
FieldValue(Value aInstance, IType aType, String aFieldName)
Sub New(aInstance As Value, aType As IType, aFieldName As String)
Parameters:
- aInstance: Instance value
- aType: Type the field is defined on
- aFieldName: Field on this value
Binary (declared in Value)
Creates a binary value
method Binary(aOp: BinaryOperator; aOther: Value): Value
Value Binary(BinaryOperator aOp, Value aOther)
func Binary(_ aOp: BinaryOperator, _ aOther: Value) -> Value
Value Binary(BinaryOperator aOp, Value aOther)
Function Binary(aOp As BinaryOperator, aOther As Value) As Value
Parameters:
- aOp: Operator
- aOther: Right side value
Field
Field referred to
property Field: IField read write;
IField Field { get; set; }
var Field: IField { get{} set{} }
IField Field { __get; __set; }
Property Field() As IField
creates an identifier value
method Identifier(aName: String): Value
Value Identifier(String aName)
func Identifier(_ aName: String) -> Value
Value Identifier(String aName)
Function Identifier(aName As String) As Value
Parameters:
- aName: Name of the value
creates an identifier value
method Identifier(aName: String; aArgs: array of IType): Value
Value Identifier(String aName, IType[] aArgs)
func Identifier(_ aName: String, _ aArgs: IType...) -> Value
Value Identifier(String aName, IType[] aArgs)
Function Identifier(aName As String, aArgs As IType()) As Value
Parameters:
- aName: Name of the value
- aArgs: Generic arguments.
Instance
The value to call access this field on
property Instance: Value read write;
Value Instance { get; set; }
var Instance: Value { get{} set{} }
Value Instance { __get; __set; }
Property Instance() As Value
Kind
Value kind; use this for a fast way of determining what kind of sub class a Value object is
property Kind: ValueKind read;
ValueKind Kind { get; }
var Kind: ValueKind { get{} }
ValueKind Kind { __get; }
ReadOnly Property Kind() As ValueKind
Length (declared in Value)
Creates a length value
method Length: Value
Value Length()
func Length() -> Value
Value Length()
Function Length() As Value
NotNil (declared in Value)
Creates a not nil value
method NotNil: Value
Value NotNil()
func NotNil() -> Value
Value NotNil()
Function NotNil() As Value
Position (declared in Value)
Position this value is defined at (if not set, it will be at the aspects position)
property Position: IPosition read write;
IPosition Position { get; set; }
var Position: IPosition { get{} set{} }
IPosition Position { __get; __set; }
Property Position() As IPosition
Creates a call value
method Proc(aName: String; aGP: array of IType; params aArgs: array of Value): Value
Value Proc(String aName, IType[] aGP, params Value[] aArgs)
func Proc(_ aName: String, _ aGP: IType..., _ aArgs: Value...) -> Value
Value Proc(String aName, IType[] aGP, Value[]... aArgs)
Function Proc(aName As String, aGP As IType(), ParamArray aArgs As Value()) As Value
Parameters:
- aName: Method name
- aGP: Generic parameters to pass
- aArgs: Arguments for this call
Creates a call value
method Proc(aName: String; params aArgs: array of Value): Value
Value Proc(String aName, params Value[] aArgs)
func Proc(_ aName: String, _ aArgs: Value...) -> Value
Value Proc(String aName, Value[]... aArgs)
Function Proc(aName As String, ParamArray aArgs As Value()) As Value
Parameters:
- aName: Method name
- aArgs: Arguments for this call
SubArray (declared in Value)
Creates an array/property element access value
method SubArray(params aArgs: array of Value): Value
Value SubArray(params Value[] aArgs)
func SubArray(_ aArgs: Value...) -> Value
Value SubArray(Value[]... aArgs)
Function SubArray(ParamArray aArgs As Value()) As Value
Parameters:
- aArgs: Arguments for element access
ToString
Returns the string value of this value
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
Unary (declared in Value)
Creates a unary value
method Unary(aOp: UnaryOperator): Value
Value Unary(UnaryOperator aOp)
func Unary(_ aOp: UnaryOperator) -> Value
Value Unary(UnaryOperator aOp)
Function Unary(aOp As UnaryOperator) As Value
Parameters:
- aOp: Operator
Field
Field referred to
property Field: IField read write;
IField Field { get; set; }
var Field: IField { get{} set{} }
IField Field { __get; __set; }
Property Field() As IField
Instance
The value to call access this field on
property Instance: Value read write;
Value Instance { get; set; }
var Instance: Value { get{} set{} }
Value Instance { __get; __set; }
Property Instance() As Value
Kind
Value kind; use this for a fast way of determining what kind of sub class a Value object is
property Kind: ValueKind read;
ValueKind Kind { get; }
var Kind: ValueKind { get{} }
ValueKind Kind { __get; }
ReadOnly Property Kind() As ValueKind
Position (declared in Value)
Position this value is defined at (if not set, it will be at the aspects position)
property Position: IPosition read write;
IPosition Position { get; set; }
var Position: IPosition { get{} set{} }
IPosition Position { __get; __set; }
Property Position() As IPosition
constructor
Create a new instance of this class
constructor
FieldValue()
init()
FieldValue()
Sub New()
Create a new instance of this class
constructor(aInstance: Value; aField: IField)
FieldValue(Value aInstance, IField aField)
init(_ aInstance: Value, _ aField: IField)
FieldValue(Value aInstance, IField aField)
Sub New(aInstance As Value, aField As IField)
Parameters:
- aInstance: Instance value
- aField: Field on this value
Create a new instance of this class
constructor(aInstance: Value; aType: IType; aFieldName: String)
FieldValue(Value aInstance, IType aType, String aFieldName)
init(_ aInstance: Value, _ aType: IType, _ aFieldName: String)
FieldValue(Value aInstance, IType aType, String aFieldName)
Sub New(aInstance As Value, aType As IType, aFieldName As String)
Parameters:
- aInstance: Instance value
- aType: Type the field is defined on
- aFieldName: Field on this value
Binary (declared in Value)
Creates a binary value
method Binary(aOp: BinaryOperator; aOther: Value): Value
Value Binary(BinaryOperator aOp, Value aOther)
func Binary(_ aOp: BinaryOperator, _ aOther: Value) -> Value
Value Binary(BinaryOperator aOp, Value aOther)
Function Binary(aOp As BinaryOperator, aOther As Value) As Value
Parameters:
- aOp: Operator
- aOther: Right side value
creates an identifier value
method Identifier(aName: String): Value
Value Identifier(String aName)
func Identifier(_ aName: String) -> Value
Value Identifier(String aName)
Function Identifier(aName As String) As Value
Parameters:
- aName: Name of the value
creates an identifier value
method Identifier(aName: String; aArgs: array of IType): Value
Value Identifier(String aName, IType[] aArgs)
func Identifier(_ aName: String, _ aArgs: IType...) -> Value
Value Identifier(String aName, IType[] aArgs)
Function Identifier(aName As String, aArgs As IType()) As Value
Parameters:
- aName: Name of the value
- aArgs: Generic arguments.
Length (declared in Value)
Creates a length value
method Length: Value
Value Length()
func Length() -> Value
Value Length()
Function Length() As Value
NotNil (declared in Value)
Creates a not nil value
method NotNil: Value
Value NotNil()
func NotNil() -> Value
Value NotNil()
Function NotNil() As Value
Creates a call value
method Proc(aName: String; aGP: array of IType; params aArgs: array of Value): Value
Value Proc(String aName, IType[] aGP, params Value[] aArgs)
func Proc(_ aName: String, _ aGP: IType..., _ aArgs: Value...) -> Value
Value Proc(String aName, IType[] aGP, Value[]... aArgs)
Function Proc(aName As String, aGP As IType(), ParamArray aArgs As Value()) As Value
Parameters:
- aName: Method name
- aGP: Generic parameters to pass
- aArgs: Arguments for this call
Creates a call value
method Proc(aName: String; params aArgs: array of Value): Value
Value Proc(String aName, params Value[] aArgs)
func Proc(_ aName: String, _ aArgs: Value...) -> Value
Value Proc(String aName, Value[]... aArgs)
Function Proc(aName As String, ParamArray aArgs As Value()) As Value
Parameters:
- aName: Method name
- aArgs: Arguments for this call
SubArray (declared in Value)
Creates an array/property element access value
method SubArray(params aArgs: array of Value): Value
Value SubArray(params Value[] aArgs)
func SubArray(_ aArgs: Value...) -> Value
Value SubArray(Value[]... aArgs)
Function SubArray(ParamArray aArgs As Value()) As Value
Parameters:
- aArgs: Arguments for element access
ToString
Returns the string value of this value
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
Unary (declared in Value)
Creates a unary value
method Unary(aOp: UnaryOperator): Value
Value Unary(UnaryOperator aOp)
func Unary(_ aOp: UnaryOperator) -> Value
Value Unary(UnaryOperator aOp)
Function Unary(aOp As UnaryOperator) As Value
Parameters:
- aOp: Operator