Package io.keikai.ui
Interface UserActionContext
-
- All Known Implementing Classes:
DefaultUserActionManagerCtrl.UserActionContextImpl
public interface UserActionContext
- Author:
- dennis
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
UserActionContext.Clipboard
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearClipboard()
String
getAction()
Set<AreaRefWithType>
getAllSelection()
Book
getBook()
String
getCategory()
UserActionContext.Clipboard
getClipboard()
Object
getData(String key)
org.zkoss.zk.ui.event.Event
getEvent()
AreaRef
getSelection()
CellSelectionType
getSelectionType()
AreaRefWithType
getSelectionWithType()
Sheet
getSheet()
int
getSheetMaxVisibleColumns()
int
getSheetMaxVisibleRows()
Spreadsheet
getSpreadsheet()
void
setClipboard(Sheet sheet, AreaRef selection, boolean cutMode, Object info)
-
-
-
Method Detail
-
getSpreadsheet
Spreadsheet getSpreadsheet()
-
getBook
Book getBook()
-
getSheet
Sheet getSheet()
-
getEvent
org.zkoss.zk.ui.event.Event getEvent()
-
getSelection
AreaRef getSelection()
-
getAllSelection
Set<AreaRefWithType> getAllSelection()
- Since:
- 6.0.0
-
getSelectionType
CellSelectionType getSelectionType()
- Since:
- 3.5.0
-
getCategory
String getCategory()
-
getAction
String getAction()
-
getClipboard
UserActionContext.Clipboard getClipboard()
-
clearClipboard
void clearClipboard()
-
getSelectionWithType
AreaRefWithType getSelectionWithType()
-
getSheetMaxVisibleRows
int getSheetMaxVisibleRows()
-
getSheetMaxVisibleColumns
int getSheetMaxVisibleColumns()
-
-