New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
///
/// Determines if the specified cell position is found in a range list.
///
/// The row index.
/// The column index.
/// The range list with ranges to be searched.
/// true if cell position was found; false otherwise.
public bool GetInvertStateRowCol(int rowIndex, int colIndex, GridRangeInfoList rl)
{
return rl != null && rl.AnyRangeContains(GridRangeInfo.Cell(rowIndex, colIndex));
}