Gets or sets the value associated with the this instance of MfString
Overrides MfPrimitive.Value
OutputVar := instance.Value
instance.Value := Value
Value
Sets the value of the MfString instance.
Can be any var containing string or
Gets value assigned to the derived instance.
Sets the value asigned to the derived instance.
Throws MfInvalidCastException if value is not a valid string var or MfString.
Value is not affected by the state of ReturnAsObject and always returns a var.
str := new MfString("Hello World") ; Create a new instance of the MfString Class
MsgBox % str.Value ; Displays Messsage box with containgin Hello World
str.Value := "Cool Code" ; Sets the value of MfString Class instance str
MsgBox % str.Value ; Displays Messsage box with containging Cool Code
; assign a MfString instane to a MfString instance Value
MyStr := new MfString()
MyStr.Value := str
MsgBox % MyStr.Value ; Displays Messsage box with containging Cool Code