--OSVSplitter--

	__index = OSHSplitter
	type = "OSVSplitter"

	character = "|"
	TextColour = colours.grey
	BackgroundColour = colours.white

	new = function(self, _x, _y, _length)
		local new = {}    -- the new instance
		setmetatable( new, {__index = OSVSplitter} )
		new.width = 1
		new.height = _length
		new.x = _x
		new.y = _y
		new.enabled = true
		return new
	end

	Draw = function(self)
		OSDrawing.DrawArea(self.x, self.y, self.width, self.height, self.character, self.BackgroundColour, self.TextColour)
	end