MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / setProps

Method setProps

packages/designer/src/document/node/node.ts:856–862  ·  view source on GitHub ↗

* 设置多个属性值,替换原有值

(props?: IPublicTypePropsMap | IPublicTypePropsList | Props | null)

Source from the content-addressed store, hash-verified

854 * 设置多个属性值,替换原有值
855 */
856 setProps(props?: IPublicTypePropsMap | IPublicTypePropsList | Props | null) {
857 if (props instanceof Props) {
858 this.props = props;
859 return;
860 }
861 this.props.import(props);
862 }
863
864 /**
865 * 获取节点在父容器中的索引

Callers

nothing calls this directly

Calls 1

importMethod · 0.65

Tested by

no test coverage detected