Main Content

removeQuery

Remove architecture view query

Since R2021a

    Description

    removeQuery(view,keepContents) removes the selection query and groupings on the view view with the option to keep contents (keepContents), which leaves the elements that were selected in the view. removeQuery allows for manually editing the view element by element. If keepContents is true, any property-based groupings are kept intact in the diagram but removed from GroupBy.

    example

    Examples

    collapse all

    Open the keyless entry system example and create a view. Specify the color as light blue, the query as all components, and group by the review status.

    import systemcomposer.query.*
    
    openProject("scKeylessEntrySystem");
    model = systemcomposer.loadModel("KeylessEntryArchitecture");
    view = model.createView("All Components Grouped by Review Status",...
       Color="lightblue",Select=AnyComponent,...
        GroupBy="AutoProfile.BaseComponent.ReviewStatus");

    Open the Architecture Views Gallery to see the new view All Components Grouped by Review Status.

    model.openViews
    

    Remove the query and keep the contents. The view is now manually editable element by element, and the groupings are preserved.

    view.removeQuery(true)

    Input Arguments

    collapse all

    Architecture view, specified as a systemcomposer.view.View object.

    Whether to keep contents in view, specified as 1 (true) to keep contents specified by the removed selection query and property-based groupings or 0 (false). to remove all contents from the view.

    More About

    collapse all

    Version History

    Introduced in R2021a