Main Content

getPropertyValues

Get property values of diagram and diagram finder result objects

Since R2022a

    Description

    example

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

    Examples

    collapse all

    Find the property values of the diagram 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 the diagrams 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
        getPropertyValues(diag,"Type")     
    end
    ans = 1x1 cell array
        {["Simulink.BlockDiagram"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    
    ans = 1x1 cell array
        {["Stateflow.Chart"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    
    ans = 1x1 cell array
        {["Simulink.SubSystem"]}
    
    

    Input Arguments

    collapse all

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

    List of properties values to access, specified as an array of strings 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