I want to retrieve information from the tabular data of a load or a result in Mechanical
Adapt the following code. Note it will only work with Mechanical UI open.
object_name = 'Rotational Velocity' object_in_tree = DataModel.GetObjectsByName(object_name)[0] object_in_tree.Activate() paneTabular=ExtAPI.UserInterface.GetPane(MechanicalPanelEnum.TabularData) control = paneTabular.ControlUnknown column_number = 3 # adjust to which column title we need to get, starting from 1 value = control.cell(1, 3).Text print(value)