ScheduleFilter Class

ScheduleFilter Class

A filter in a schedule.
Inheritance Hierarchy
SystemObject
  Autodesk.Revit.DBScheduleFilter

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public class ScheduleFilter : IDisposable
Public Class ScheduleFilter
	Implements IDisposable
public ref class ScheduleFilter : IDisposable
type ScheduleFilter = 
    class
        interface IDisposable
    end

The ScheduleFilter type exposes the following members.

Constructors
Properties
 NameDescription
Public propertyFieldId The ID of the field used to filter the schedule.
Public propertyFilterType The filter type.
Public propertyIsDoubleValue Indicates if the filter has a double value.
Public propertyIsElementIdValue Indicates if the filter has an ElementId value.
Public propertyIsIntegerValue Indicates if the filter has an integer value.
Public propertyIsNullValue Indicates if the filter has no specified value.
Public propertyIsStringValue Indicates if the filter has a string value.
Public propertyIsValidObject Specifies whether the .NET object represents a valid Revit entity.
Top
Methods
 NameDescription
Public methodDisposeReleases all resources used by the ScheduleFilter
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetDoubleValue Gets the filter value for a filter using a double value.
Public methodGetElementIdValue Gets the filter value for a filter using an ElementId value.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetIntegerValue Gets the filter value for a filter using an integer value.
Public methodGetStringValue Gets the filter value for a filter using a string value.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetNullValue Sets the filter to have no specified value (used for HasParameter filters).
Public methodSetValue(Double) Set the filter value to a double.
Public methodSetValue(ElementId) Set the filter value to an ElementId.
Public methodSetValue(Int32) Set the filter value to an integer.
Public methodSetValue(String) Set the filter value to a string.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks

The ScheduleFilter class represents a single filter in a schedule. A filter is a condition that must be satisfied for an element to appear in the schedule. All filters must be satisfied for an element to appear in the schedule.

A schedule can be filtered by data that is not displayed in the schedule by marking the field used for filtering as hidden using the ScheduleField.IsHidden property.

See Also