Method: Axlsx::Worksheet#selected
- Defined in:
- lib/axlsx/workbook/worksheet/worksheet.rb
#selected ⇒ Object
Deprecated.
Use SheetView#tab_selected instead.
Indicates if the worksheet is selected in the workbook It is possible to have more than one worksheet selected, however it might cause issues in some older versions of excel when using copy and paste.
264 265 266 267 |
# File 'lib/axlsx/workbook/worksheet/worksheet.rb', line 264 def selected warn('axlsx::DEPRECIATED: Worksheet#selected has been depreciated. This value can get over SheetView#tab_selected.') sheet_view.tab_selected end |