module Fzeet::UpDownMethods
Public Instance Methods
buddy=(buddy)
click to toggle source
# File lib/fzeet/windows/comctl/UpDown.rb, line 64 def buddy=(buddy) sendmsg(:setbuddy, buddy.handle) end
position=(position)
click to toggle source
# File lib/fzeet/windows/comctl/UpDown.rb, line 68 def position=(position) sendmsg(:setpos32, 0, position) end
range=(range)
click to toggle source
# File lib/fzeet/windows/comctl/UpDown.rb, line 66 def range=(range) sendmsg(:setrange, 0, Windows.MAKELONG(*range.reverse)) end