class TheFox::TermKit::ClearViewContent
Use to clear a single point of a View
.
If a View
disappears the screen needs to be cleaned or redrawn. An instance of this class should only be used temporary.
Public Class Methods
new(char = nil, view = nil, origin = nil)
click to toggle source
Calls superclass method
TheFox::TermKit::ViewContent::new
# File lib/termkit/view/content_view_clear.rb, line 11 def initialize(char = nil, view = nil, origin = nil) char ||= ' ' super(char, view, origin) end