Class: matlab.mixin.CustomDisplay
Package: matlab.mixin
Display format for deleted scalar handles
displayScalarHandleToDeletedObject(obj)
displayScalarHandleToDeletedObject( is called by the obj)disp method when obj is:
An instance of a handle class
Scalar
A handle to a deleted object
That is, the following expression is true.
isa(obj,'handle') && isscalar(obj) && ~isvalid(obj) Override this method to customize the appearance of your object's display when it is deleted.
|
Object of a class derived from |