FilterBuilderRange Method (String, String, String, Boolean, Boolean)A Sandcastle Documented Class Library
Create a new RANGE filter, limiting the result to values between from and to, for the specified attribute. Whether or not the bounds should be considered inclusive or exclusive is determined by the specified fromInc and toInc parameters.

Namespace:  Apptus.ESales.Connector
Assembly:  Apptus.Esales.ConnectorApi (in Apptus.Esales.ConnectorApi.dll) Version: 4.2.1
Syntax

C#
public static Filter Range(
	string attribute,
	string from,
	string to,
	bool fromInc,
	bool toInc
)

Parameters

attribute
Type: SystemString
the attribute to search for the specified range
from
Type: SystemString
the lower bound
to
Type: SystemString
the upper bound
fromInc
Type: SystemBoolean
if the lower bound should be considered inclusive
toInc
Type: SystemBoolean
if the upper bound should be considered inclusive

Return Value

Type: Filter
a new RANGE filter
See Also

Reference