NX Open C++ Reference Guide
|
Represents a Weld::WeldObjectBuilder class used to collect welding objects created or edited from a command. More...
Classes | |
struct | FeatureInfo |
Structure used to identify if each feature is newly created or edited. More... | |
Public Types | |
enum | CommandName { CommandNameNone, CommandNameGroove, CommandNameFillet, CommandNameUserDefined, CommandNameWeldPoint, CommandNameBead, CommandNameFill, CommandNameImportCsv, CommandNameEasySpot, CommandNameDatumLocator, CommandNameMeasurementLocator, CommandNameEasyMeasurementPattern, CommandNamePlugSlot, CommandNameJoint, CommandNameDatumSurface, CommandNameDatumPin, CommandNameSurfaceWeld, CommandNameCompound, CommandNameWeldAttribute, CommandNameJointDefinition, CommandNameJointmark } |
Commands that a callback will be invoked after dialog completion. More... | |
Public Member Functions | |
NXOpen::Weld::WeldObjectBuilder::CommandName | CommandUsed () |
Returns the command name that was last used to create or modify features Created in NX8.0.1. | |
void | GetFeatureInformation (std::vector< NXOpen::Weld::WeldObjectBuilder::FeatureInfo > &features) |
Gets the created and modifed features Created in NX8.0.1. | |
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::WeldObjectBuilder class used to collect welding objects created or edited from a command.
Created in NX8.0.1.
Commands that a callback will be invoked after dialog completion.
CommandNameNone |
No command. Used to initialize value. |
CommandNameGroove | |
CommandNameFillet | |
CommandNameUserDefined |
User Defined Weld command. |
CommandNameWeldPoint | |
CommandNameBead |
Bead command. |
CommandNameFill |
Fill command. |
CommandNameImportCsv |
Import CSV command. |
CommandNameEasySpot |
Easy Spot command. |
CommandNameDatumLocator |
Datum Locator command. |
CommandNameMeasurementLocator |
Measurement Locator command. |
CommandNameEasyMeasurementPattern |
Easy Measurement Pattern command. |
CommandNamePlugSlot |
Plug Slot command. |
CommandNameJoint |
Welding Joint command. |
CommandNameDatumSurface |
Datum Surface command. |
CommandNameDatumPin |
Datum Pin command. |
CommandNameSurfaceWeld |
Surface Weld command. |
CommandNameCompound |
Compound Weld command. |
CommandNameWeldAttribute |
Edit Weld Attribute. |
CommandNameJointDefinition |
Edit Joint Definition Parameters. |
CommandNameJointmark |
Joint Mark command. |
NXOpen::Weld::WeldObjectBuilder::CommandName NXOpen::Weld::WeldObjectBuilder::CommandUsed | ( | ) |
Returns the command name that was last used to create or modify features
Created in NX8.0.1.
License requirements : ugweld ("UG WELD")
void NXOpen::Weld::WeldObjectBuilder::GetFeatureInformation | ( | std::vector< NXOpen::Weld::WeldObjectBuilder::FeatureInfo > & | features | ) |
Gets the created and modifed features
Created in NX8.0.1.
License requirements : ugweld ("UG WELD")
features | features created or edited |
|
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.