如何使用C#如何实现visio中动态连接线的效果

2025-02-19 02:56:26
推荐回答(2个)
回答1:

Cell beginShapeCell = shape.get_CellsSRC(1, 1, 0);
Cell beginLineCell = shapeLine.get_CellsU("BeginX");
Cell endLineCell = shapeLine.get_CellsU("EndX");
beginLineCell.GlueTo(beginShapeCell);

回答2: