Main Content

displayScalarHandleToDeletedObject

Class: matlab.mixin.CustomDisplay
Namespace: matlab.mixin

Display format for deleted scalar handles

Syntax

displayScalarHandleToDeletedObject(obj)

Description

displayScalarHandleToDeletedObject(obj) is called by the disp method when obj is:

  • An instance of a handle class

  • Scalar

  • A handle to a deleted object

The default display of this method is:

'handle to deleted myClass'

myClass is the class of obj. The text is a link to the documentation on deleted handle objects if the display supports links.

Input Arguments

expand all

Scalar handle to a deleted object. The class of obj must be derived from matlab.mixin.CustomDisplay.

Attributes

Accessprotected

To learn about attributes of methods, see Method Attributes.

Version History

Introduced in R2013b

Go to top of page