Main Content

getQualifiedName

Get model element qualified name

Description

example

getQualifiedName(element)gets the qualified name of the architecture model elementelement.

Examples

collapse all

Create a component named'newComponent', then get its qualified name.

model = systemcomposer.createModel('newModel',true); rootArch = get(model,'Architecture'); newComponent = addComponent(rootArch,'newComponent'); name = getQualifiedName(newComponent)
name = 'newModel/newComponent'

Input Arguments

collapse all

Introduced in R2019a