n_xls_selection.sru 531 B

1234567891011121314151617181920212223242526272829
  1. $PBExportHeader$n_xls_selection.sru
  2. forward
  3. global type n_xls_selection from nonvisualobject
  4. end type
  5. end forward
  6. global type n_xls_selection from nonvisualobject
  7. end type
  8. global n_xls_selection n_xls_selection
  9. type variables
  10. PUBLIC UINT ii_first_row
  11. PUBLIC INTEGER ii_first_col
  12. PUBLIC UINT ii_last_row
  13. PUBLIC INTEGER ii_last_col
  14. end variables
  15. on n_xls_selection.create
  16. call super::create
  17. TriggerEvent( this, "constructor" )
  18. end on
  19. on n_xls_selection.destroy
  20. TriggerEvent( this, "destructor" )
  21. call super::destroy
  22. end on