Create container for tabbed panels
tg = uitabgroup
creates a tab group in the current figure and
returns the TabGroup
object. If there is no figure available, MATLAB® calls the figure
function to create one. Tab groups are
containers for tabs. They allow you to identify the selected tab, and detect when the user
selects a different tab.
tg = uitabgroup(
specifies tab
group property values using one or more name-value pair arguments.Name,Value
)
tg = uitabgroup(
creates the tab group
in the specified parent container. The parent container can be a figure created with either
the parent
)figure
or uifigure
function, or a child container such as a panel. Property values for
uitabgroup
vary slightly depending on whether the app is created with
the figure
or uifigure
function. For more
information, see Name-Value Pair Arguments.
tg = uitabgroup(
specifies the parent container and one or more properties values.parent
,Name,Value
)