Method: CDK::SCALE#set

Defined in:
lib/cdk/scale.rb

#set(low, high, value, box) ⇒ Object

This function sets the low/high/current values of the widget.



466
467
468
469
470
# File 'lib/cdk/scale.rb', line 466

def set(low, high, value, box)
  self.setLowHigh(low, high)
  self.setValue(value)
  self.setBox(box)
end