class Qt::TimeLine
Public Instance Methods
frameRange=(arg)
click to toggle source
Calls superclass method
# File lib/Qt/qtruby4.rb, line 2142 def frameRange=(arg) if arg.kind_of? Range return super(arg.begin, arg.exclude_end? ? arg.end - 1 : arg.end) else return super(arg) end end