struct TableFilterField in module com::sun::star::sheet::

(Global Index)

Syntax

struct TableFilterField;

Description

describes a single condition in a filter descriptor.

Field Summary

Connection specifies how the condition is connected to the previous condition.

Field specifies which field (column) is used for the condition.

Operator specifies the type of the condition.

IsNumeric selects whether the TableFilterField::NumericValue or the TableFilterField::StringValue is used.

NumericValue specifies a numeric value for the condition.

StringValue specifies a string value for the condition.

Field Details



Connection

Syntax

com::sun::star::sheet::FilterConnection Connection;

Description

specifies how the condition is connected to the previous condition.


Field

Syntax

long Field;

Description

specifies which field (column) is used for the condition.


Operator

Syntax

com::sun::star::sheet::FilterOperator Operator;

Description

specifies the type of the condition.


IsNumeric

Syntax

boolean IsNumeric;

Description

selects whether the TableFilterField::NumericValue or the TableFilterField::StringValue is used.


NumericValue

Syntax

double NumericValue;

Description

specifies a numeric value for the condition.


StringValue

Syntax

string StringValue;

Description

specifies a string value for the condition.

Top of Page