Main Content

getPropertyValues

Get property values of block and block finder result objects

Since R2022a

    Description

    example

    propVals = getPropertyValues(resultObject,propNames) returns the values of the properties specified in propNames for the block finder result object, resultObject. propNames must have the names of the properties of the finder result object or the block represented by the finder result object.

    Examples

    collapse all

    Find the property values of the diagram elements in the sf_car model.

    Import the required namespaces to avoid using long, fully qualified class names.

    import slreportgen.finder.*

    Load the model and search for diagram elements in the model. For each result object, print the Type property.

    model_name = 'sf_car';
    load_system(model_name)
    
    
    diagFinder = DiagramFinder(model_name);
    diagrams = find(diagFinder);
    for diag = diagrams
        elemFinder = DiagramElementFinder(diag);
        elemFinder.Types = "slfunction";
        for elems=find(elemFinder)
            getPropertyValues(elems,"Type")     
        end
    end
    ans = 1x1 cell array
        {["Stateflow.SLFunction"]}
    
    

    Input Arguments

    collapse all

    Finder result object, specified as an slreportgen.finder.BlockResult object.

    List of property values to access, specified as an string array or cell array of characters.

    Valid propNames elements are:

    If propNames contains invalid properties, the corresponding cell array value is N/A.

    Output Arguments

    collapse all

    Values of the accessed properties, returned as a cell array.

    Version History

    Introduced in R2022a