@wcardinal/wcardinal-geditor
Version:
WebGL-based graphic editor, tester and viewer for supervisory systems
20 lines • 1.06 kB
JavaScript
import { __extends } from "tslib";
import { ECommandShapePropertySimple } from "./e-command-shape-property-simple";
var ECommandShapePropertyTextSpacingHorizontal = /** @class */ (function (_super) {
__extends(ECommandShapePropertyTextSpacingHorizontal, _super);
function ECommandShapePropertyTextSpacingHorizontal() {
return _super !== null && _super.apply(this, arguments) || this;
}
ECommandShapePropertyTextSpacingHorizontal.prototype.getProperty = function (shape, capability) {
return shape.text.spacing.horizontal;
};
ECommandShapePropertyTextSpacingHorizontal.prototype.setProperty = function (shape, capability, property) {
shape.text.spacing.horizontal = property;
};
ECommandShapePropertyTextSpacingHorizontal.prototype.isMergeable = function () {
return true;
};
return ECommandShapePropertyTextSpacingHorizontal;
}(ECommandShapePropertySimple));
export { ECommandShapePropertyTextSpacingHorizontal };
//# sourceMappingURL=e-command-shape-property-text-spacing-horizontal.js.map