Method: CDK::MATRIX#setBKattr

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

#setBKattr(attrib) ⇒ Object

This sets the background attribute of the widget.



1151
1152
1153
1154
1155
1156
1157
1158
# File 'lib/cdk/components/matrix.rb', line 1151

def setBKattr(attrib)
  @win.wbkgd(attrib)
  (0..@vrows).each do |x|
    (0..@vcols).each do |y|
      # wbkgd (MATRIX_CELL (widget, x, y), attrib);
    end
  end
end