getOutport

Get code configuration from code mappings for root-level outport

    Description

    example

    propertyValue = getOutport(myCodeMappingObj,outportBlock,property) returns the value of a code mapping property for the specified root-level Outport block. Use this function to return the storage class or the value of a storage class property configured for a root-level outport in a model.

    Examples

    collapse all

    From the model code mappings for model myConfigModel, get the name of the storage class that is configured for root-level outport Out1.

    cm = coder.mapping.api.get('myConfigModel');
    scOut1 = getOutport(cm,'Out1','StorageClass');
    

    From the model code mappings for model myConfigModel, get the code identifier configured for root-level outport Out1.

    cm = coder.mapping.api.get('myConfigModel');
    idOut1 = getOutport(cm,'Out1','Identifier');
    

    Input Arguments

    collapse all

    Code mapping object (model code mappings) returned by a call to function coder.mapping.api.get.

    Example: myCM

    Name, path, or handle of the root-level outport for which to return the code mapping information.

    Example: 'Out1'

    Data Types: char | string

    Code mapping property for which to return a value. Specify one of these property names.

    Information to ReturnProperty Name
    Name of storage classStorageClass
    Name of variable for root-level outport in the generated codeIdentifier

    Example: 'StorageClass'

    Output Arguments

    collapse all

    Name of the storage class or value of the specified storage class property configured for the specified root-level outport.

    Data Types: char

    Introduced in R2020b