Class AuthorTableInsertColumnArguments
java.lang.Object
ro.sync.ecss.extensions.api.table.operations.AuthorTableInsertColumnArguments
Holds the arguments for
AuthorTableOperationsHandler.handleInsertColumn(AuthorTableInsertColumnArguments)
method.- Since:
- 14
-
Constructor Summary
ConstructorsConstructorDescriptionAuthorTableInsertColumnArguments
(int insertOffset, AuthorDocumentFragment[] columnFragments, boolean fragmentsWrappedInCells, AuthorAccess authorAccess, TableColumnSpecificationInformation columnSpecification) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the column specification information of a table column.int
-
Constructor Details
-
AuthorTableInsertColumnArguments
public AuthorTableInsertColumnArguments(int insertOffset, AuthorDocumentFragment[] columnFragments, boolean fragmentsWrappedInCells, AuthorAccess authorAccess, TableColumnSpecificationInformation columnSpecification) Constructor.- Parameters:
insertOffset
- The offset where the column is inserted.columnFragments
- The array containing the cells nodes that compose an Author table column.fragmentsWrappedInCells
-true
if the given column fragments represents the cells nodes or only the content of the cells nodes.authorAccess
- The Author access.columnSpecification
- Table column specification information that is requested when a column is copied or dragged, fromAuthorTableOperationsHandler.getColumnSpecification(AuthorAccess, ro.sync.ecss.extensions.api.node.AuthorElement, int)
method. It can benull
if no information is specified for table column.
-
-
Method Details
-
getAuthorAccess
- Returns:
- Returns the access to Author operation.
-
getColumnFragments
- Returns:
- Returns the array containing the cells nodes that compose an Author table column.
-
getInsertOffset
public int getInsertOffset()- Returns:
- Returns the offset where the column is inserted.
-
areFragmentsWrappedInCells
public boolean areFragmentsWrappedInCells()- Returns:
- Returns
true
if the given column fragments represents the cells nodes or only the content of the cells nodes.
-
getColumnSpecificationInformation
Returns the column specification information of a table column. This information is requested when a column is copied or dragged, fromAuthorTableOperationsHandler.getColumnSpecification(AuthorAccess, ro.sync.ecss.extensions.api.node.AuthorElement, int)
method.- Returns:
- Returns information about column specification (like column specified width).
It can be
null
if no information is specified for table column.
-