Main Content
displayScalarObject
Class: matlab.mixin.CustomDisplay
Namespace: matlab.mixin
Display format for scalar objects
Syntax
displayScalarObject(obj)
Description
displayScalarObject(
is called by the
obj
)disp
method when the object, obj
, is scalar.
The default display of a scalar object consists of a header and a list of properties and
their values. Properties are shown in the order they are defined in the class definition.
displayScalarObject
shows only those properties with public
GetAccess
and Hidden
set to
false
.
Override this method to customize the display of a scalar object.
Input Arguments
Examples
See Customize Display of Scalar Objects for a sample implementation of displayScalarObject
.
Version History
Introduced in R2013b