Class Index

Classes


Class $.wijmo.wijspread.SearchOrder

Class Summary
Constructor Attributes Constructor Name and Description
 
Specifies the type of search direction.
Field Summary
Field Attributes Field Name and Description
 
Determines whether the search goes by row, column coordinates.
 
Determines whether the search goes by column, row coordinates.
Class Detail
$.wijmo.wijspread.SearchOrder()
Specifies the type of search direction.
var searchCondition = new $.wijmo.wijspread.SearchCondition();
searchCondition.searchString = "testSearch";
searchCondition.startSheetIndex = spread.getActiveSheetIndex();
searchCondition.endSheetIndex = spread.getActiveSheetIndex();

searchCondition.searchOrder = $.wijmo.wijspread.SearchOrder.NOrder;
searchCondition.searchTarget = $.wijmo.wijspread.SearchFoundFlags.CellText;
searchCondition.searchFlags = $.wijmo.wijspread.SearchFlags.Ignorecode| $.wijmo.wijspread.SearchFlags.UseWildCards;
var searchresult= spread.search(searchCondition);

var str ="[searchFoundFlag:"+ searchresult.searchFoundFlag+",\r\n foundSheetIndex:"+searchresult.foundSheetIndex+",foundRowIndex:" +
  searchresult.foundRowIndex+", foundColumnIndex:"+searchresult.foundColumnIndex+", foundString:"+searchresult.foundSheetIndex+"]";
alert(str);
Field Detail
NOrder
Determines whether the search goes by row, column coordinates.

ZOrder
Determines whether the search goes by column, row coordinates.

©2013. ComponentOne, a division of GrapeCity. All Rights Reserved.