n_xls_panes.sru 483 B

123456789101112131415161718192021222324252627282930
  1. $PBExportHeader$n_xls_panes.sru
  2. forward
  3. global type n_xls_panes from nonvisualobject
  4. end type
  5. end forward
  6. global type n_xls_panes from nonvisualobject
  7. end type
  8. global n_xls_panes n_xls_panes
  9. type variables
  10. PUBLIC DOUBLE id_x
  11. PUBLIC DOUBLE id_y
  12. PUBLIC UINT ii_rowtop
  13. PUBLIC UINT ii_colleft
  14. end variables
  15. on n_xls_panes.create
  16. call super::create
  17. TriggerEvent( this, "constructor" )
  18. end on
  19. on n_xls_panes.destroy
  20. TriggerEvent( this, "destructor" )
  21. call super::destroy
  22. end on