示例#1
0
 public void SetSymbolAtPosition(int row, int column, BrailleSymbolSlotPosition symbol)
 {
     if (symbol != null)
     {
         BrailleSymbolSlot slot = symbol.Symbol;
         setLetter(row, column, slot.DisplayLettter);
         setFillerCase(row, column, slot.Filler);
     }
     else
     {
         setLetter(row, column, ' ');
         setFillerCase(row, column, false);
     }
 }
示例#2
0
 public BrailleSymbolSlotPosition(BrailleSymbolSlot symbol, int row, int i)
 {
     this.Symbol = symbol;
     this.row    = row;
     this.i      = i;
 }