2018-01-11 01:47:09 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IGraphicFrameLockAttributes {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly xmlns?: string;
|
|
|
|
readonly noChangeAspect?: number;
|
2018-01-11 01:47:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class GraphicFrameLockAttributes extends XmlAttributeComponent<IGraphicFrameLockAttributes> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-01-11 01:47:09 +00:00
|
|
|
xmlns: "xmlns:a",
|
|
|
|
noChangeAspect: "noChangeAspect",
|
|
|
|
};
|
|
|
|
}
|