Package: matlab.mixin
Derive handle classes with set and get methods
Note:
|
classdef
subclasses the MySubClass
<
matlab.mixin.SetGetmatlab.mixin.SetGet
class. matlab.mixin.SetGet
is
a subclass of the handle
class.
Use the matlab.mixin.SetGet
class to derive
classes that inherit set
and get
methods
that behave like MATLAB® graphics set
and get
functions.
The set
and get
methods
inherited from matlab.mixin.SetGet
support inexact
property name matching. You can use a combination of partial and case-insensitive
names as long as the inexact name is not ambiguous. Dot-based property
references require exact property name matches.
Method | Purpose |
---|---|
set | Assigns values to the specified properties or returns a cell array of possible values for writable properties. |
get | Returns value of specified property or a struct with
all property values. |
setdisp | Implicitly called when set is called with
no output arguments and a handle array, but no property name. Override
this method to change what set displays. |
getdisp | Implicitly called when get is called with
no output arguments and handle array, but no property name. Override
this method to change what get displays. |
Abstract | true |
ConstructOnLoad | true |
HandleCompatible | true |
To learn about attributes of classes, see Class Attributes in the MATLAB Object-Oriented Programming documentation.
Handle. To learn how handle classes affect copy operations, see Using Handles in the MATLAB documentation.