ofc_line_style.php 132 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?php

class line_style
{
	function line_style($on, $off)
	{
		$this->style	= "dash";
		$this->on		= $on;
		$this->off		= $off;
	}
}