Main Content

removeReference

Remove Simulink interface dictionary reference from another interface dictionary

Since R2023a

Description

example

removeReference(dictObj,refDict) removes an interface dictionary reference, specified by refDict, from the specified interface dictionary, dictObj.

Examples

collapse all

Remove referenced dictionaries ReferenceInterfaces1.sldd and ReferenceInterfaces2.sldd from the interface dictionary MyInterfaces.sldd.

Get the names of the referenced dictionaries.

dictAPI1 = Simulink.interface.dictionary.open('MyInterfaces.sldd');
refDicts = getReferences(dictAPI1)
refDicts =

  2×1 cell array

    {'C:\work\ReferenceInterfaces1.sldd'}
    {'C:\work\ReferenceInterfaces2.sldd'}

Remove the referenced dictionaries, using a dictionary object and character vector.

dictAPI2 = Simulink.interface.dictionary.open('ReferenceInterfaces1.sldd');
removeReference(dictAPI1,dictAPI2);
removeReference(dictAPI1,'ReferenceInterfaces2.sldd');

refDicts = getReferences(dictAPI1)
refDicts =

  0×1 empty cell array

Input Arguments

collapse all

Interface dictionary, specified as a Simulink.interface.Dictionary object. Before you use this function, Before you use this function, create or open dictObj by using Simulink.interface.dictionary.create or Simulink.interface.dictionary.open.

Referenced interface dictionary, specified as a character vector, a string scalar, or a Simulink.interface.Dictionary object.

Example: 'ReferenceDictionary.sldd'

Version History

Introduced in R2023a

expand all