Personalizzazione della visualizzazione degli oggetti per le classi
Personalizzare il modo in cui MATLAB® visualizza gli oggetti della classe nella finestra di comando
La classe CustomDisplay
definisce un'interfaccia che può essere utilizzata per personalizzare la visualizzazione degli oggetti da parte di MATLAB. Per una panoramica sull'interfaccia, vedere Custom Display Interface. Inoltre, la classe CustomCompactDisplayProvider
consente di personalizzare la visualizzazione degli oggetti nei contenitori, come struct e tabelle. Per una panoramica sull'interfaccia, vedere Custom Compact Display Interface.
Funzioni
details | Display array details |
Classi
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 (Da R2021b) |
matlab.display.CompactDisplayRepresentation | Base class for representing compact display of object array (Da R2021b) |
matlab.display.DisplayConfiguration | Describe display environment and settings (Da R2021b) |
matlab.display.DimensionsAndClassNameRepresentation | Compact display representation using dimensions and class name (Da R2021b) |
matlab.display.PlainTextRepresentation | Compact display representation using data in object array (Da R2021b) |
Argomenti
Personalizzazione delle classi e dei metodi dell’interfaccia di visualizzazione
- 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.
Tecniche specifiche per la personalizzazione della visualizzazione degli oggetti
- 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.
Personalizzazione delle visualizzazioni compatte
- Custom Compact Display Interface
Customize the representation of objects in compact display scenarios.