Hello All,
Can anyone suggest me the tcl command to import plot styles in hyperview?
Thanks in advance.
Regards,
Sanket Patil
Please take a look at the RestorePlotStyle API, under the Contour Control Class.
Probably you're looking for this:
Resets the contour controller settings with a memorized plot style.
poIContourCtrl_handle RestorePlotStyle style_name
HyperView Tcl Modify
This command updates the contour controller settings with the new settings specified by the plot style name.
hwi OpenStack hwi GetSessionHandle session_handle session_handle GetProjectHandle project_handle project_handle GetPageHandle page_handle [project_handle GetActivePage] page_handle GetWindowHandle window_handle [page_handle GetActiveWindow] window_handle GetClientHandle client_handle client_handle GetModelHandle model_handle [client_handle GetActiveModel] model_handle GetResultCtrlHandle result_handle result_handle GetContourCtrlHandle contour_handle contour_handle RestorePlotStyle style_name hwi CloseStack
Please take a look at the RestorePlotStyle API, under the Contour Control Class. Probably you're looking for this: poIContourCtrl RestorePlotStyle Resets the contour controller settings with a memorized plot style. Syntax poIContourCtrl_handle RestorePlotStyle style_name Application HyperView Tcl Modify Description This command updates the contour controller settings with the new settings specified by the plot style name. Inputs style_name The name of the plot style. Example To restore a contour plot style: hwi OpenStack hwi GetSessionHandle session_handle session_handle GetProjectHandle project_handle project_handle GetPageHandle page_handle [project_handle GetActivePage] page_handle GetWindowHandle window_handle [page_handle GetActiveWindow] window_handle GetClientHandle client_handle client_handle GetModelHandle model_handle [client_handle GetActiveModel] model_handle GetResultCtrlHandle result_handle result_handle GetContourCtrlHandle contour_handle contour_handle RestorePlotStyle style_name hwi CloseStack
Hello @Adriano A. Koga,
Thanks for guiding me.
I have one piece of code as below,
hwi OpenStackset t [::post::GetT];hwi GetSessionHandle sessh$tsessh$t GetProjectHandle ph$tph$t GetPageHandle pgh$t [ ph$t GetActivePage]pgh$t GetWindowHandle wh$t [pgh$t GetActiveWindow]wh$t GetClientHandle ch$tch$t GetModelHandle modH$t [ch$t GetActiveModel]modH$t GetResultCtrlHandle anim$tanim$t GetContourCtrlHandle result$tresult$t GetCurrentPlotStyleset psList [result$t GetPlotStyleList]result$t RestorePlotStyle "C:/Program Files/Altair/2019/hw/prefinc/post_styles.xml"hwi CloseStack
I am trying to import the post_styles.xml file but it is not loading in model. Can you help to resolve the issue.
Hello @Adriano A. Koga, Thanks for guiding me. I have one piece of code as below, hwi OpenStackset t [::post::GetT];hwi GetSessionHandle sessh$tsessh$t GetProjectHandle ph$tph$t GetPageHandle pgh$t [ ph$t GetActivePage]pgh$t GetWindowHandle wh$t [pgh$t GetActiveWindow]wh$t GetClientHandle ch$tch$t GetModelHandle modH$t [ch$t GetActiveModel]modH$t GetResultCtrlHandle anim$tanim$t GetContourCtrlHandle result$tresult$t GetCurrentPlotStyleset psList [result$t GetPlotStyleList]result$t RestorePlotStyle "C:/Program Files/Altair/2019/hw/prefinc/post_styles.xml"hwi CloseStack I am trying to import the post_styles.xml file but it is not loading in model. Can you help to resolve the issue. Thanks in advance. Regards, Sanket Patil
Any suggestions on this?
Sanket