NX Journal 図面を開いてビューの更新
2020/01/17 categories:NX Journal| tags:NX Journal|Python|
CSVからID、リビジョン、図面名を取得して図面を開く、ビューの更新を繰り返すプログラムを作成しました。
Pythonコード
import NXOpen
import NXOpen.UF
import csv
def main():
theSession = NXOpen.Session.GetSession()
# csvを開く
dicts = open_csv()
# 開けなければ終了
if dicts is None:
return
for d in dicts:
# 図面のファイル名を作成
dwg_filename = "@DB/" + d["ID"] + "/" + d["リビジョン"] + "/specification/" + d["図面名"]
# ファイルを開く
openPart(theSession, dwg_filename)
workPart = theSession.Parts.Work
# アプリケーションの切り替え
theSession.ApplicationSwitchImmediate("UG_APP_DRAFTING")
# 図面を更新
viewUpdate(workPart)
def viewUpdate(workPart):
# ビューの更新
try:
workPart.Views.WorkView.UpdateCustomSymbols()
views = [ view for view in workPart.DraftingViews ]
workPart.DraftingViews.UpdateViews(views)
except Exception as e:
pass
def openPart(theSession, id):
try:
# 既にファイルを開いていれば表示パートを変える
part1 = theSession.Parts.FindObject(id)
status1, partLoadStatus1 = theSession.Parts.SetActiveDisplay(
part1,
NXOpen.DisplayPartOption.AllowAdditional,
NXOpen.PartDisplayPartWorkPartOption.UseLast
)
partLoadStatus1.Dispose()
except Exception as e:
# 見つからなければファイルを開く
status1 = theSession.Parts.OpenBaseDisplay(id)
def open_csv():
try:
# ファイル選択ダイアログ表示
theUfSession = NXOpen.UF.UFSession.GetUFSession()
theUI = NXOpen.UI.GetUI()
ret = theUfSession.Ui.CreateFilebox("", "CSVファイルを選択", "csv", "*.csv")
# CSVを辞書のリストに変換
with open(ret[1]) as f:
reader = csv.DictReader(f)
dicts = [row for row in reader]
return dicts
except:
return None
if __name__ == '__main__':
main()