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