ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / BuildingSceneLayer Class / ClearActiveFilter Method
Example

In This Topic
    ClearActiveFilter Method
    In This Topic
    Clears the active filter. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public void ClearActiveFilter()
    Public Sub ClearActiveFilter() 
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Set and Clear Active Filter for BuildingSceneLayer
    //Must be called on the MCT
    //Note: Use HasFilter to check if a given filter id exists in the layer
    //var bsl = ...;
    if (bsl.HasFilter(filter1.ID))
      bsl.SetActiveFilter(filter1.ID);
    var activeFilter = bsl.GetActiveFilter();
    
    //Clear the active filter
    bsl.ClearActiveFilter();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also