Retrieve target feature object from MATLAB memory
retrieves a target feature object from MATLAB® memory.targetFeatureObject
= target.get(targetFeatureClass
, targetFeatureObjectId
)
This example shows how you can remove a
target.LanguageImplementation
object associated with an object
identifier, myLanguageImplementationID
.
Retrieve the object from MATLAB memory.
objectToRemove = target.get('LanguageImplementation', myLanguageImplementationID);
Remove the object.
target.remove(objectToRemove);