我想突出显示 Shape 对象的连接器,但它没有为连接器本身提供任何 LineStyle 属性。这是我到目前为止得到的:
For i = 0 To UBound(lngShapeIDs)
Dim shp As Shape
Dim connect As connect
Set shp = ActivePage.Shapes.ItemFromID(lngShapeIDs(i))
shp.LineStyle = "Guide"
shp.BringToFront
Set connect = shp.FromConnects.Item(i + 1)
Next