NX Open C++ Reference Guide
|
Represents an Offset . More...
Public Types | |
enum | SimpleDraftType { SimpleDraftTypeNoDraft, SimpleDraftTypeSimpleFromStart, SimpleDraftTypeSimpleFromProfile, SimpleDraftTypeSymmetric, SimpleDraftTypeMatchedEnds, SimpleDraftTypeAsymmetric } |
This enum represents the kind of simple_draft. More... | |
Public Member Functions | |
NXOpen::Expression * | DraftAngle () |
Returns the draft angle. | |
NXOpen::GeometricUtilities::SimpleDraft::SimpleDraftType | DraftType () |
Returns the simple draft type. | |
void | SetDraftAngle (const NXString &draftAngle) |
Sets the draft angle | |
void | SetDraftAngle (const char *draftAngle) |
Sets the draft angle | |
void | SetDraftType (NXOpen::GeometricUtilities::SimpleDraft::SimpleDraftType type) |
Sets the simple draft type. | |
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 an Offset .
Created in NX4.0.0.
This enum represents the kind of simple_draft.
NXOpen::Expression* NXOpen::GeometricUtilities::SimpleDraft::DraftAngle | ( | ) |
Returns the draft angle.
Created in NX4.0.0.
License requirements : None
NXOpen::GeometricUtilities::SimpleDraft::SimpleDraftType NXOpen::GeometricUtilities::SimpleDraft::DraftType | ( | ) |
Returns the simple draft type.
Created in NX4.0.0.
License requirements : None
void NXOpen::GeometricUtilities::SimpleDraft::SetDraftAngle | ( | const NXString & | draftAngle | ) |
Sets the draft angle
To set the value of the expression modify the expression directly using GeometricUtilities::SimpleDraft::DraftAngle and Expression::SetRightHandSide .
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
draftAngle | Draft angle NOTE: The full Unicode character set is not supported for this parameter. |
void NXOpen::GeometricUtilities::SimpleDraft::SetDraftAngle | ( | const char * | draftAngle | ) |
Sets the draft angle
To set the value of the expression modify the expression directly using GeometricUtilities::SimpleDraft::DraftAngle and Expression::SetRightHandSide .
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
draftAngle | Draft angle NOTE: The full Unicode character set is not supported for this parameter. |
void NXOpen::GeometricUtilities::SimpleDraft::SetDraftType | ( | NXOpen::GeometricUtilities::SimpleDraft::SimpleDraftType | type | ) |
Sets the simple draft type.
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
type | type |
|
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.