コード例 #1
0
 /// <summary>
 /// Find Boxes that bound chars in processed bitmap
 /// </summary>
 private Rectangle[] FindChars(int minCharHeight, int maxCharHeight)
 {
     return(Boxes.Where(x => x.Height >= minCharHeight && x.Height <= maxCharHeight).ToArray());
 }
コード例 #2
0
 public List <Box> listaBoxPorStatus(bool status)
 {
     return(Boxes.Where(x => x.Ocupado == status).ToList());
 }