matlab.mixin.CustomDisplay.getFooter - Build customized display footer text - MATLAB (original) (raw)
Main Content
Class: matlab.mixin.CustomDisplay
Namespace: matlab.mixin
Build customized display footer text
Description
[s](#mw%5Fb7ea8c9d-f737-4ae0-8abe-60341249d3ae) = getFooter([obj](#mw%5F71894d18-dea3-4e3f-a638-56bddd71a4aa))
returns the text used as the footer when displaying obj
. This method is called once for the entire object array.
Override this method to create a custom footer. The overriding implementation must support all states of the object, including scalar, nonscalar, empty, and deleted (ifobj
is an instance of a handle class).
Input Arguments
Object array to apply custom footer to. The class of obj
must be derived from matlab.mixin.CustomDisplay
.
Output Arguments
Custom footer text, returned as a char
vector. The default implementation returns an empty char
vector.
Examples
See Customize Header, Property List, and Footer for a sample implementation of getFooter
.
Version History
Introduced in R2013b