Method: CDK::MATRIX#drawEachColTitle

Defined in:
lib/cdk/components/matrix.rb

#drawEachColTitleObject



799
800
801
802
803
804
805
806
807
808
809
810
# File 'lib/cdk/components/matrix.rb', line 799

def drawEachColTitle
  (1..@vcols).each do |x|
    unless @cell[0][x].nil?
      @cell[0][x].werase
      Draw.writeChtype(@cell[0][x],
          @coltitle_pos[@lcol + x - 1], 0,
          @coltitle[@lcol + x - 1], CDK::HORIZONTAL, 0,
          @coltitle_len[@lcol + x - 1])
      wrefresh(@cell[0][x])
    end
  end
end