function DrawDirect() { $this->initData(); DisplayObject::DrawDirect(); }
function DrawDirect() { // Make sure all data is properly gathered and prepared.... $this->InitDisplay(); // if this is not an Excel sheet then display the HTML if ($this->isExcelSheet == false) { DisplayObject::DrawDirect(); } else { // Send the Excel Workbook $this->ExcelWorkBook->DrawDirect(); } }
function DrawDirect() { $this->DrawInit(); DisplayObject::DrawDirect(); }
function DrawDirect() { $this->AddToDisplayList($this->Data); DisplayObject::DrawDirect(); }