ConfigureResultTableBuilder Class

class NXOpen.AME.ConfigureResultTableBuilder

Bases: NXOpen.Builder

Represents configure result table class builder

To create a new instance of this class, use NXOpen.AME.AMEManager.CreateConfigureResultTableBuilder()

New in version NX12.0.0.

Properties

Property Description
SelectedClassification Returns the selected classification
SourceObject Returns the source object
Tag Returns the Tag for this object.

Methods

Method Description
Add The action to add properties
Commit Commits any edits that have been applied to the builder.
Destroy Deletes the builder, and cleans up any objects created by the builder.
GetCommittedObjects For builders that create more than one object, this method returns the objects that are created by commit.
GetObject Returns the object currently being edited by this builder.
MoveDown The action to move added column down
MoveUp The action to move added column up
Remove The action to move earlier added column
SetVisibility The visibility status of each column or group
ShowResults Updates the model to reflect the result of an edit to the model for all builders that support showing results.
Validate Validate whether the inputs to the component are sufficient for commit to be called.

Property Detail

SelectedClassification

ConfigureResultTableBuilder.SelectedClassification

Returns the selected classification

-------------------------------------

Getter Method

Signature SelectedClassification

Returns:
Return type:NXOpen.AME.SelectClassificationBuilder

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

SourceObject

ConfigureResultTableBuilder.SourceObject

Returns the source object

-------------------------------------

Getter Method

Signature SourceObject

Returns:
Return type:NXOpen.SelectNXObjectList

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

Method Detail

Add

ConfigureResultTableBuilder.Add

The action to add properties

Signature Add(groupName, propertyName)

Parameters:
  • groupName (str) –
  • propertyName (str) –

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

MoveDown

ConfigureResultTableBuilder.MoveDown

The action to move added column down

Signature MoveDown(groupName, propertyName)

Parameters:
  • groupName (str) –
  • propertyName (str) –

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

MoveUp

ConfigureResultTableBuilder.MoveUp

The action to move added column up

Signature MoveUp(groupName, propertyName)

Parameters:
  • groupName (str) –
  • propertyName (str) –

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

Remove

ConfigureResultTableBuilder.Remove

The action to move earlier added column

Signature Remove(groupName, propertyName)

Parameters:
  • groupName (str) –
  • propertyName (str) –

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

SetVisibility

ConfigureResultTableBuilder.SetVisibility

The visibility status of each column or group

Signature SetVisibility(groupName, propertyName, visibility)

Parameters:
  • groupName (str) –
  • propertyName (str) –
  • visibility (bool) –

New in version NX12.0.0.

License requirements: ad_automation_design (“FULL AUTOMATION DESIGNER”)

Validate

ConfigureResultTableBuilder.Validate

Validate whether the inputs to the component are sufficient for commit to be called.

If the component is not in a state to commit then an exception is thrown. For example, if the component requires you to set some property, this method will throw an exception if you haven’t set it. This method throws a not-yet-implemented NXException for some components.

Signature Validate()

Returns:Was self validation successful
Return type:bool

New in version NX3.0.1.

License requirements: None.