Class FilterConditions

Provides a collection of FilterCondition objects, which describe the filter conditions entered by a user for a particular report.

System.Object
  SFQWrapper.SQBase
    SFQWrapper.SQCollection
      SFQWrapper.FilterConditions
public class FilterConditions : SQCollection, IEnumerable

Class Members

MemberDescription

AddItem

Adds a new FilterCondition to the collection and returns a reference to the new FilterCondition.

Set the FieldName property of the returned FilterCondition object to assign it to a field.

public FilterCondition AddItem();

public virtual object AddItem(string ItemName);

Clear

Removes all members from the collection.

public void Clear();

Item

Returns a FilterCondition object by name.

public virtual object Item(string ItemName);

public virtual object Item(int Index);

RemoveItem

Removes an item from the collection by index.

public virtual bool RemoveItem(int Index);

public virtual bool RemoveItem(string ItemName);

AskAtRuntimeOnly

Iterate through Ask-At-Runtime FilterConditions only. Used like:

foreach (FilterCondition condition in report.FilterConditions.AskAtRuntimeOnly) { System.Console.WriteLine(condition.Values); }

Count

The number of items in the collection.

ErrorMessage

The message for any error that occurred.

Requirements

Namespace: SFQWrapper
Assembly: sfqwrapper.dll

© Stonefield Software Inc., 2023 • Updated: 06/06/16
Comment or report problem with topic