Exemplo n.º 1
0
 function Draw()
 {
     $this->initData();
     return DisplayObject::Draw();
 }
Exemplo n.º 2
0
 function Draw()
 {
     $this->DrawInit();
     return DisplayObject::Draw();
 }
Exemplo n.º 3
0
 function DrawSubMenus()
 {
     // Re-initialize Display List before drawing
     $this->DisplayList = array();
     $this->NumDisplayItems = 0;
     $this->ParseDraw($this->NavBarData['SubMenus']);
     return DisplayObject::Draw();
 }
Exemplo n.º 4
0
 function Draw()
 {
     $this->InitDisplay();
     if ($this->isExcelSheet == false) {
         DisplayObject::Draw();
     } else {
         $this->ExcelWorkBook->Draw();
     }
 }
 function Draw()
 {
     $this->AddToDisplayList($this->Data);
     return DisplayObject::Draw();
 }