NX Open C++ Reference Guide
|
Represents a Weld::WeldPointExitBuilder class used to pass welding object from the Weld Point command to a user callback. More...
Classes | |
struct | FeatureInfo |
Structure used to identify newly created features. More... | |
Public Types | |
enum | CommandName { CommandNameNone, CommandNameWeldPoint, CommandNameDatumLocator, CommandNameMeasurementLocator } |
The command name used for the newly created features. More... | |
enum | MethodUsed { MethodUsedNone, MethodUsedMirror, MethodUsedTranslate } |
The method use to create the features. More... | |
Public Member Functions | |
NXOpen::Weld::WeldPointExitBuilder::CommandName | CommandUsed () |
Returns the command name that was last used to create features. | |
void | GetFeatureInformation (std::vector< NXOpen::Weld::WeldPointExitBuilder::FeatureInfo > &features) |
Gets the information for the newly created features. | |
virtual bool | Validate () |
Validate whether the inputs to the component are sufficient for commit to be called. | |
![]() | |
tag_t | GetTag () const |
<b>Deprecated</b>:<br> Use Tag instead. | |
tag_t | Tag () const |
Returns the tag of this object. | |
Represents a Weld::WeldPointExitBuilder class used to pass welding object from the Weld Point command to a user callback.
This object is not used on edit.
Created in NX8.0.2.
The command name used for the newly created features.
CommandNameNone |
No command. Used to initialize value. |
CommandNameWeldPoint | |
CommandNameDatumLocator |
Datum Locator command. |
CommandNameMeasurementLocator |
Measurement Locator command. |
NXOpen::Weld::WeldPointExitBuilder::CommandName NXOpen::Weld::WeldPointExitBuilder::CommandUsed | ( | ) |
Returns the command name that was last used to create features.
This callback is not called on edit.
Created in NX8.0.2.
License requirements : ugweld ("UG WELD")
void NXOpen::Weld::WeldPointExitBuilder::GetFeatureInformation | ( | std::vector< NXOpen::Weld::WeldPointExitBuilder::FeatureInfo > & | features | ) |
Gets the information for the newly created features.
Created in NX8.0.2.
License requirements : ugweld ("UG WELD")
features | features created |
|
virtual |
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.
Implements NXOpen::GeometricUtilities::IComponentBuilder.