Package io.keikai.api.model
Interface SheetProtection
-
- All Known Implementing Classes:
SheetProtectionImpl
public interface SheetProtection
This interface provides access to what are allowed operations for a protected sheet.- Author:
- henri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isAutoFilterAllowed()
get whether cells can be filtered.boolean
isDeleteColumnsAllowed()
get whether columns can be deleted.boolean
isDeleteRowsAllowed()
get whether rows can be deleted.boolean
isFormatCellsAllowed()
get whether cells can be formatted.boolean
isFormatColumnsAllowed()
get whether columns can be formatted.boolean
isFormatRowsAllowed()
get whether rows can be formatted.boolean
isInsertColumnsAllowed()
get whether columns can be inserted.boolean
isInsertHyperlinksAllowed()
get whether hyperlinks can be inserted.boolean
isInsertRowsAllowed()
get whether rows can be inserted.boolean
isObjectsEditable()
get whether linked objects or embedded objects can be edited.boolean
isPivotTablesAllowed()
get whether PivotTable reports ccan be created or modified.boolean
isScenariosEditable()
get whether scenarios can be edited.boolean
isSelectLockedCellsAllowed()
get whether locked cells can be selected.boolean
isSelectUnlockedCellsAllowed()
get whether unlocked cells can be selected.boolean
isSortAllowed()
get whether cells can be sorted.
-
-
-
Method Detail
-
isObjectsEditable
boolean isObjectsEditable()
get whether linked objects or embedded objects can be edited.- Returns:
- whether linked objects or embedded objects can be edited.
-
isScenariosEditable
boolean isScenariosEditable()
get whether scenarios can be edited.
-
isFormatCellsAllowed
boolean isFormatCellsAllowed()
get whether cells can be formatted.
-
isFormatColumnsAllowed
boolean isFormatColumnsAllowed()
get whether columns can be formatted.
-
isFormatRowsAllowed
boolean isFormatRowsAllowed()
get whether rows can be formatted.
-
isInsertColumnsAllowed
boolean isInsertColumnsAllowed()
get whether columns can be inserted.
-
isInsertRowsAllowed
boolean isInsertRowsAllowed()
get whether rows can be inserted.
-
isInsertHyperlinksAllowed
boolean isInsertHyperlinksAllowed()
get whether hyperlinks can be inserted.
-
isDeleteColumnsAllowed
boolean isDeleteColumnsAllowed()
get whether columns can be deleted.
-
isDeleteRowsAllowed
boolean isDeleteRowsAllowed()
get whether rows can be deleted.
-
isSelectLockedCellsAllowed
boolean isSelectLockedCellsAllowed()
get whether locked cells can be selected.
-
isSortAllowed
boolean isSortAllowed()
get whether cells can be sorted.
-
isAutoFilterAllowed
boolean isAutoFilterAllowed()
get whether cells can be filtered.
-
isPivotTablesAllowed
boolean isPivotTablesAllowed()
get whether PivotTable reports ccan be created or modified.
-
isSelectUnlockedCellsAllowed
boolean isSelectUnlockedCellsAllowed()
get whether unlocked cells can be selected.
-
-