NX Open C++ Reference Guide
|
Represents a draft point data object
To create an instance of this class, see DraftPointDataCollection::CreateDraftPointData
Created in NX4.0.0.
More...
Public Member Functions | |
NXOpen::Expression * | GetAngle () |
Returns the Angle value. | |
double | Parameter () |
Returns the point coordinates. | |
void | SetAngle (const NXString &angle) |
Sets the Angle value. | |
void | SetAngle (const char *angle) |
Sets the Angle value. | |
void | SetParameter (double parameter) |
Sets the point coordinates. | |
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 draft point data object
To create an instance of this class, see DraftPointDataCollection::CreateDraftPointData
Created in NX4.0.0.
NXOpen::Expression* NXOpen::GeometricUtilities::DraftPointData::GetAngle | ( | ) |
Returns the Angle value.
@return Angle Expression Object
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
double NXOpen::GeometricUtilities::DraftPointData::Parameter | ( | ) |
Returns the point coordinates.
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
void NXOpen::GeometricUtilities::DraftPointData::SetAngle | ( | const NXString & | angle | ) |
Sets the Angle value.
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
angle | Angle string value |
void NXOpen::GeometricUtilities::DraftPointData::SetAngle | ( | const char * | angle | ) |
Sets the Angle value.
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
angle | Angle string value |
void NXOpen::GeometricUtilities::DraftPointData::SetParameter | ( | double | parameter | ) |
Sets the point coordinates.
Created in NX4.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
parameter | parameter |
|
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.