Remove this object from this selection set.
This function removes a given object from a given selection set.
The argument entity-name is the object to be removed from the selection set.
The argument setname is the set from which the object will be removed.
This function returns RTNORM or an error code.
Example
sds_printf("\nNow removing the first object from the set...");
sds_ssdel(entname1,setname1); // Delete the first object.
returni=sds_ssmemb(entname1,setname1); // Is the first object there?
if (returni==RTNORM)
sds_printf("\nAn error has occured...the first object was not deleted. ");
else
sds_printf("\nThe first object was successfully deleted from the set. ");
Tell me about...
Programming Overview of SDS™ (Solutions Development System™)