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