Main Content
Customize Object Display for Classes
Customize how MATLAB® displays objects of your class in the command window
The CustomDisplay
class defines an interface that you
can use to customize how MATLAB displays objects. For an overview of the interface, see Custom Display Interface. In
addition, the CustomCompactDisplayProvider
class enables
you to customize the display of objects in containers, such as structs and
tables. For an overview of the interface, see Custom Compact Display Interface.
Functions
details | Display array details |
Classes
matlab.mixin.CustomDisplay | Interface for customizing object display |
matlab.mixin.util.PropertyGroup | Custom property list for object display |
matlab.mixin.CustomCompactDisplayProvider | Interface for customizing object display within containers (Since R2021b) |
matlab.display.CompactDisplayRepresentation | Base class for representing compact display of object array (Since R2021b) |
matlab.display.DisplayConfiguration | Describe display environment and settings (Since R2021b) |
matlab.display.DimensionsAndClassNameRepresentation | Compact display representation using dimensions and class name (Since R2021b) |
matlab.display.PlainTextRepresentation | Compact display representation using data in object array (Since R2021b) |
Topics
Custom Display Interface Class and Methods
- Custom Display Interface
TheCustomDisplay
class provides an API for customizing the display of objects of your class. - How CustomDisplay Works
MATLAB determines the state of an object and then calls specific methods for that state to display the object. - Class with Default Object Display
This example class customizes various aspects of object display. - Role of size Function in Custom Displays
MATLAB uses the size function to help determine the state of the object to display.
Specific Techniques for Customizing Object Display
- Choose a Technique for Display Customization
You can customize object display based on the state of the object and you can change different parts of the display. - Customize Property Display
Change the order and number of properties displayed for an object of your class. - Customize Header, Property List, and Footer
Customize each of the three parts of the display — header, property groups, and footer. - Customize Display of Scalar Objects
Customize the display of scalar objects. - Customize Display of Object Arrays
Customize the display of nonscalar objects, including empty object arrays. - Customize Display for Heterogeneous Arrays
You can call only sealed methods on nonscalar heterogeneous arrays. - Overloading the disp Function
Overloading thedisp
function provides limited display customization.
Customizing Compact Displays
- Custom Compact Display Interface
Customize the representation of objects in compact display scenarios.