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