IXlsCellCondition
COM interface ( getting help with interfaces )

 

interface IXlsCellCondition : IDispatch
{
  [id(1)] HRESULT Between([in]BSTR arg1, [in]BSTR arg2);
  [id(2)] HRESULT NotBetween([in]BSTR arg1, [in]BSTR arg2);
  [id(3)] HRESULT EqualTo([in]BSTR arg);
  [id(4)] HRESULT NotEqualTo([in]BSTR arg);
  [id(5)] HRESULT GreaterThan([in]BSTR arg);
  [id(6)] HRESULT LessThan([in]BSTR arg);
  [id(7)] HRESULT GreaterThanOrEqualTo([in]BSTR arg);
  [id(8)] HRESULT LessThanOrEqualTo([in]BSTR arg);
}

 

HRESULT Between([in]BSTR arg1, [in]BSTR arg2);
defines a simple condition. The condition is true if the content of the cell is between arg1 (number) and arg2 (number).

HRESULT NotBetween([in]BSTR arg1, [in]BSTR arg2);
defines a simple condition. The condition is true if the content of the cell is not between arg1 (number) and arg2 (number).

HRESULT EqualTo([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is equal to arg (number).

HRESULT NotEqualTo([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is not equal to arg (number).

HRESULT GreaterThan([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is greater than arg (number).

HRESULT LessThan([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is less than arg (number).

HRESULT GreaterThanOrEqualTo([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is greater or equal than arg (number).

HRESULT LessThanOrEqualTo([in]BSTR arg);
defines a simple condition. The condition is true if the content of the cell is less or equal to arg (number).