Previous Next


FilterType Method (RDKResult Object)

Description

Sets the type of a result filter. A result filter removes values from result calculations. For example, you can throw out all iterations where a particular output result was less than zero by setting a filter. The "type" of a filter controls its scope. In other words, it controls whether the filter only affects a single result object, or affects all results in the same simulation.

Syntax

object.FilterType

Arguments

None.

Return Value

(RDKFilterType) – one of the three values:

Example

With result Obj
    .FilterMin = 100
    .FilterMax = 200
    .FilterType = RDKFilterTypeStandard
End With