Difference between revisions of "Error Messages/40185"

m
 
Line 1: Line 1:
= Example Error Text =
+
[[Category: Error messages]]
  
:The value assigned to the Isin attribute must be an object.
+
== Example error text ==
  
= Cause =
+
:<code>''The value assigned to the Isin attribute must be an object.''</code>
  
You've attempted to assign to an attribute that expects an object handle, such as in the following expression:
+
== Cause ==
  
IsIn X := "Mo2"
+
You've attempted to assign to an [[attributes|attribute]] that expects an object [[handle]], such as in the following expression:
  
Most likely you've attempted an assignment to one of the attributes: IsIn or Original.
+
:<code>IsIn X := Mo2</code>
  
= Remedy =
+
Most likely you've attempted an assignment to one of the attributes: IsIn or [[Original]].
  
Provide a handle to the object, e.g.:
+
== Remedy ==
  
IsIn X := Handle(Mo2)
+
Provide a [[handle]] to the object, e.g.:
  
 +
:<code>IsIn X := Handle(Mo2)</code>
  
= See Also =
+
== See Also ==
 
+
* [[Handle]]
 
* [[Move]] typescript command
 
* [[Move]] typescript command
* [[Assignment Operator:: ::=|Assignment Operator (:=)]]
+
* [[Assignment Operator :=]]
 
+
* [[Attributes]]
<comments />
+
* [[Attributes#Node_attributes|IsIn]]
 +
* [[Original]]

Latest revision as of 00:06, 22 March 2016


Example error text

The value assigned to the Isin attribute must be an object.

Cause

You've attempted to assign to an attribute that expects an object handle, such as in the following expression:

IsIn X := Mo2

Most likely you've attempted an assignment to one of the attributes: IsIn or Original.

Remedy

Provide a handle to the object, e.g.:

IsIn X := Handle(Mo2)

See Also

Comments


You are not allowed to post comments.