Main Content

getDefaultSummaryProperties

Get list of default summary table properties for a finder result class

Since R2022a

    Description

    example

    propList = getDefaultSummaryProperties(resultObject) returns the default summary table properties for the finder result class, resultObject.

    propList = getDefaultSummaryProperties(resultObject,TypeSpecificProperties=value) indicates whether to include the type-specific properties.

    Examples

    collapse all

    Find the default properties included in the summary table reporter for a finder result object.

    Run the following command to access the supporting files used in this example.

    openExample('rptgenext/SimulinkReportGeneratorFilesExample');

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

    import slreportgen.finder.*

    Load the model and search for signals in the model.. For each result object, print the associated default summary table properties.

    model_name = "slrgex_vdp";
    load_system(model_name)
    
    
    finder = SignalFinder(model_name);
    results = find(finder);
    
    props = getDefaultSummaryProperties(results(1))
    
    props = 
    
      1×5 string array
    
        "Name"    "Description"    "Source"    "NonvirtualDestination"    "DataType"
    

    Input Arguments

    collapse all

    Finder result object for which to list the default summary table properties, specified as an object of a finder result class.

    Whether to return type-specific properties of the finder result object, specified as true or false.

    Output Arguments

    collapse all

    List of default summary table properties, returned as a string array. Default properties for the result classes are:

    Finder Result ClassProperty List When TypeSpecificProperties Is trueProperty List When TypeSpecificProperties set to true
    slreportgen.finder.BlockResult
    • Name

    • Parent

    • Block dialog properties for the block represented by the finder result object

    • Name

    • Parent

    slreportgen.finder.DataDictionaryResultThis class does not have any type-specific properties.
    • Name

    • DataSources

    slreportgen.finder.DiagramElementResult

    The default properties depend on the type of finder result object:

    • Name

    • Type

    slreportgen.finder.DiagramResult

    The default properties depend on the type of finder result object:

    • Name

    • Description

    slreportgen.finder.ModelVariableResultThis class does not have any type-specific properties.
    • Name

    • Class

    • Source

    • SourceType

    slreportgen.finder.SignalResultThis class does not have any type-specific properties.
    • Name

    • Description

    • Source

    • NonvirtualDestination

    • DataType

    slreportgen.finder.FunctionReferenceResultThis class does not have any type-specific properties.
    • Name

    • Calling blocks

    • Calling expressions

    Version History

    Introduced in R2022a