[OPM CE C#]如何删除或移动OPM元素

最终目的是移动OPM元素。

先将OPM元素用MS方法,获得一个cellheader元素,然后ApplyTransform,ReplaceInModel。此方法(有别的办法移动么?最好是直接移动OPM元素,现在是没办法才转换成MS元素操作)可以移动除operator外的OPM元素。
opmComponent.ApplyTransform(transInfo);
opmComponent.ReplaceInModel(opmComponent);

同样方法试图移动operator元素,执行到opmOperatorComponent.ReplaceInModel (opmOperatorComponent)时候会报错{"Bad StatusInt: 69645"}。

然后我尝试删除原来的operator,在正确的位置上重新放置。请问如何删除?VS搜索过delete和remove关键字,没找到删除元素的方法。试过ReplaceInModel(Null),也不生效。