| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module table/tablecellproperties/commands/tablecellborderstylecommand
- */
- import TableCellPropertyCommand from './tablecellpropertycommand';
- import { getSingleValue } from '../../commands/utils';
- /**
- * The table cell border style command.
- *
- * The command is registered by {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing} as
- * `'tableCellBorderStyle'` editor command.
- *
- * To change cell border style of the selected cell, execute the command:
- *
- * editor.execute( 'tableCellBorderStyle', {
- * value: 'dashed'
- * } );
- *
- * @extends module:core/command~Command
- */
- export default class TableCellBorderStyleCommand extends TableCellPropertyCommand {
- /**
- * Creates a new `TableCellBorderWidthCommand` instance.
- *
- * @param {module:core/editor/editor~Editor} editor Editor on which this command will be used.
- */
- constructor( editor ) {
- super( editor, 'borderStyle' );
- }
- /**
- * @inheritDoc
- */
- _getAttribute( tableCell ) {
- if ( !tableCell ) {
- return;
- }
- return getSingleValue( tableCell.getAttribute( this.attributeName ) );
- }
- }
|