Returns the read-only state of an entity’s property.
(ispropertyreadonly ename propertyname [or collectionName index name] )
1 is returned when the property is read-only; otherwise, 0 is returned when the property is writable.
The following example demonstrates how to check the read-only state of the Radius and Area properties of a circle.
Command: (setq e1 (car (entsel "\nSelect an arc or circle: "))) <Entity name: 10e2e4ba0> Command: (ispropertyreadonly e1 "Radius") 0 Command: (ispropertyreadonly e1 "Area") 1