com.jniwrapper.win32.jexcel
Class Range.SearchAttributes

java.lang.Object
  extended by com.jniwrapper.win32.jexcel.Range.SearchAttributes
Enclosing class:
Range

public static class Range.SearchAttributes
extends java.lang.Object

This class is used for specification find attributes.


Constructor Summary
Range.SearchAttributes()
           
 
Method Summary
 Range.FindLookIn getLookIn()
          Returns the current information type to be searched.
 boolean isCaseSensitive()
          Returns true if the case-sensitive search is specified.
 boolean isFindWholePhrase()
          Returns true if the search of a whole phrase is specified.
 boolean isForwardDirection()
          Returns true if the forward direction search is specified.
 void setCaseSensitive(boolean caseSensitive)
          Instructs Excel to do the case-sensitive search.
 void setFindWholePhrase(boolean findWholePhrase)
          Instructs Excel to search the whole phrase.
 void setForwardDirection(boolean forwardDirection)
          Instructs Excel to search in the forward direction.
 void setLookIn(Range.FindLookIn value)
          Specifies the type of information to be searched.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Range.SearchAttributes

public Range.SearchAttributes()
Method Detail

setLookIn

public void setLookIn(Range.FindLookIn value)
Specifies the type of information to be searched.

Parameters:
value - is an instance of the FindLookIn class. May be of the following predefined values: FindLookIn.VALUES, FindLookIn.COMMENTS or FindLookIn.FORMULAS.

getLookIn

public Range.FindLookIn getLookIn()
Returns the current information type to be searched.

Returns:
the current information type to be searched.

isFindWholePhrase

public boolean isFindWholePhrase()
Returns true if the search of a whole phrase is specified.

Returns:
true if the search of a whole phrase is specified.

setFindWholePhrase

public void setFindWholePhrase(boolean findWholePhrase)
Instructs Excel to search the whole phrase.

Parameters:
findWholePhrase - if true Excel will search the whole phrase.

isForwardDirection

public boolean isForwardDirection()
Returns true if the forward direction search is specified.

Returns:
true if the forward direction search is specified.

setForwardDirection

public void setForwardDirection(boolean forwardDirection)
Instructs Excel to search in the forward direction.

Parameters:
forwardDirection - if true Excel will search in the forward direction.

isCaseSensitive

public boolean isCaseSensitive()
Returns true if the case-sensitive search is specified.

Returns:
true if the case-sensitive search is specified.

setCaseSensitive

public void setCaseSensitive(boolean caseSensitive)
Instructs Excel to do the case-sensitive search.

Parameters:
caseSensitive - if true Excel will do the case-sensitive search.