[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPivotFilter

Interface IPivotFilter

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a pivot filter in the PivotFilters collection.

public interface IPivotFilter

Properties

DataField

Gets the data field that the pivot filter depends on.

IPivotField DataField { get; }

Property Value

IPivotField

Description

Gets the description of the pivot filter. The maximum length of the description string is 255 characters.

string Description { get; }

Property Value

string

FilterType

Gets the type of the pivot filter.

PivotFilterType FilterType { get; }

Property Value

PivotFilterType

Name

Gets the name of the pivot filter.

string Name { get; }

Property Value

string

PivotField

Gets the label field that the pivot filter depends on.

IPivotField PivotField { get; }

Property Value

IPivotField

Value1

Gets the first filter value.

object Value1 { get; }

Property Value

object

Value2

Gets the second filter value.

object Value2 { get; }

Property Value

object

WholeDayFilter

Gets or sets a value indicating whether the date filter should use whole days in its filtering criteria.

bool WholeDayFilter { get; set; }

Property Value

bool

Methods

Delete()

Deletes the filter and removes it from the filter collections of the PivotField.

void Delete()