createSubGroup - Create subgroup in element group of view - MATLAB (original) (raw)

Main Content

Create subgroup in element group of view

Since R2021a

Syntax

Description

[subGroup](#mw%5F5e592022-2c6c-4de9-83bc-9f49fd7bb7ed%5Fsep%5Fmw%5Fc2f14c7a-c872-4e82-9eb7-637f3658b401) = createSubGroup([elementGroup](#mw%5F5e592022-2c6c-4de9-83bc-9f49fd7bb7ed%5Fsep%5Fmw%5F042c6b64-3cb4-41b8-bb3e-4f553fb799d5),[subGroupName](#mw%5F5e592022-2c6c-4de9-83bc-9f49fd7bb7ed%5Fsep%5Fmw%5F8f444046-a7a6-428a-ae0b-a73c2150edd9)) creates a new subgroup subGroup, namedsubGroupName within the element groupelementGroup of an architecture view.

Note

This function cannot be used when a selection query or grouping is defined on the view. To remove the query, run removeQuery.

example

Examples

collapse all

Open the keyless entry system example and create a view newView.

openProject("scKeylessEntrySystem"); model = systemcomposer.loadModel("KeylessEntryArchitecture"); view = model.createView("newView");

Open the Architecture Views Gallery to see the new view newView.

Create a subgroup myGroup.

group = view.Root.createSubGroup("myGroup")

group = ElementGroup with properties:

     Name: 'myGroup'
     UUID: '539fa2cf-629b-4e28-82df-41365aa6cedb'
 Elements: []
SubGroups: [0×0 systemcomposer.view.ElementGroup]

Input Arguments

collapse all

Name of subgroup, specified as a character vector or string.

Example: "myGroup"

Data Types: char | string

Output Arguments

More About

collapse all

Term Definition Application More Information
View A view shows a customizable subset of elements in a model. Views can be filtered based on stereotypes or names of components, ports, and interfaces, along with the name, type, or units of an interface element. Create views by adding elements manually. Views create a simplified way to work with complex architectures by focusing on certain parts of the architectural design. You can use different types of views to represent the system. Switch between a component diagram, component hierarchy, or architecture hierarchy. For software architectures, you can switch to a class diagram view. A viewpoint represents a stakeholder perspective that specifies the contents of the view. Create Custom Views Using Architecture Views GalleryModeling System Architecture of Keyless Entry System
Element group An element group is a grouping of components in a view. Use element groups to programmatically populate a view. Create Architecture Views InteractivelyCreate Architecture Views Programmatically
Query A query is a specification that describes certain constraints or criteria to be satisfied by model elements. Use queries to search elements with constraint criteria and to filter views. Find Elements in Model Using Queries
Component diagram A component diagram represents a view with components, ports, and connectors based on how the model is structured. Component diagrams allow you to programmatically or manually add and remove components from the view. Inspect Components in Custom Architecture Views
Hierarchy diagram You can visualize a hierarchy diagram as a view with components, ports, reference types, component stereotypes, and stereotype properties. Component hierarchy diagrams display components in tree form with parents above children. In a component hierarchy view, each referenced model is represented as many times as it is used. Architecture hierarchy diagrams display unique component architecture types and their relationships using composition connections. In an architecture hierarchy view, each referenced model is represented only once. Display Component Hierarchy and Architecture Hierarchy Using Views

Version History

Introduced in R2021a

See Also

Tools

Functions

Objects

Topics