形状エディタの頂点の座標を取得するスクリプトを例示します。
app = designer.GetApplication()
# CADリンクを確立し、形状エディタを開く
app.GetModel(0).RestoreCadLink()
geomApp = app.CreateGeometryEditor()
# スケッチ名『Rotor core』の頂点名『Vertex.1』のY座標を取得
vol = geomApp.GetDocument().GetAssembly().GetItem(u"Rotor core").GetItem(u"Vertex.1").GetProperty(u"Y")
# 取得した値を表示
print(f"{vol}mm")


