/** * @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 the {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing} as * `'tableCellBorderStyle'` editor command. * * To change the border style of selected cells, 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 An editor in which this command will be used. */ constructor( editor ) { super( editor, 'borderStyle' ); } /** * @inheritDoc */ _getAttribute( tableCell ) { if ( !tableCell ) { return; } return getSingleValue( tableCell.getAttribute( this.attributeName ) ); } }