NodeCreateBuilder Class¶
-
class
NXOpen.CAE.NodeCreateBuilder¶ Bases:
NXOpen.BuilderRepresents a
NXOpen.CAE.NodeCreateBuilder.If you want to get the newly created node returned from this builder use the method
NXOpen.CAE.NodeCreateBuilder.CommitNode()instead ofBuilder.Commit(). They do the same thing except no node is returned fromBuilder.Commit()since this node is of typeNXOpen.CAE.FENodeand not of typeNXOpen.NXObjectTo create a new instance of this class, use
NXOpen.CAE.NodeElementManager.CreateNodeCreateBuilder()New in version NX5.0.0.
Properties¶
| Property | Description |
|---|---|
| Csys | Returns or sets the csys |
| DispCsys | Returns or sets the dispCsys |
| Increment | Returns or sets the increment |
| Label | Returns or sets the label |
| PAngle | Returns the p angle |
| Point | Returns or sets the point |
| SingleOption | Returns or sets the single option |
| TAngle | Returns the t angle |
| Tag | Returns the Tag for this object. |
| NXOpen.CAE.NodeCreateBuilder.X | Returns the x |
| NXOpen.CAE.NodeCreateBuilder.Y | Returns the y |
| NXOpen.CAE.NodeCreateBuilder.Z | Returns the z |
Methods¶
| Method | Description |
|---|---|
| Commit | Commits any edits that have been applied to the builder. |
| CommitNode | Commits the Builder, which creates the node as it was defined and returns the newly create node. |
| 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. |
| 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¶
Csys¶
-
NodeCreateBuilder.Csys¶ Returns or sets the csys
-------------------------------------Getter Method
Signature
CsysReturns: Return type: NXOpen.CoordinateSystemNew in version NX5.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
CsysParameters: csys ( NXOpen.CoordinateSystem) –New in version NX5.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
DispCsys¶
-
NodeCreateBuilder.DispCsys¶ Returns or sets the dispCsys
-------------------------------------Getter Method
Signature
DispCsysReturns: Return type: NXOpen.CoordinateSystemNew in version NX12.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
DispCsysParameters: dispCsys ( NXOpen.CoordinateSystem) –New in version NX12.0.0.
License requirements: None.
Increment¶
-
NodeCreateBuilder.Increment¶ Returns or sets the increment
-------------------------------------Getter Method
Signature
IncrementReturns: Return type: int New in version NX5.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
IncrementParameters: increment (int) – New in version NX5.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
Label¶
-
NodeCreateBuilder.Label¶ Returns or sets the label
-------------------------------------Getter Method
Signature
LabelReturns: Return type: int New in version NX5.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
LabelParameters: label (int) – New in version NX5.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
PAngle¶
-
NodeCreateBuilder.PAngle¶ Returns the p angle
-------------------------------------Getter Method
Signature
PAngleReturns: Return type: NXOpen.ExpressionNew in version NX5.0.0.
License requirements: None.
Point¶
-
NodeCreateBuilder.Point¶ Returns or sets the point
-------------------------------------Getter Method
Signature
PointReturns: Return type: NXOpen.PointNew in version NX5.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
PointParameters: point ( NXOpen.Point) –New in version NX5.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
SingleOption¶
-
NodeCreateBuilder.SingleOption¶ Returns or sets the single option
-------------------------------------Getter Method
Signature
SingleOptionReturns: Return type: bool New in version NX12.0.0.
License requirements: None.
-------------------------------------Setter Method
Signature
SingleOptionParameters: singleOption (bool) – New in version NX12.0.0.
License requirements: None.
TAngle¶
-
NodeCreateBuilder.TAngle¶ Returns the t angle
-------------------------------------Getter Method
Signature
TAngleReturns: Return type: NXOpen.ExpressionNew in version NX5.0.0.
License requirements: None.
X¶
-
NodeCreateBuilder.X¶ Returns the x
-------------------------------------Getter Method
Signature
XReturns: Return type: NXOpen.ExpressionNew in version NX5.0.0.
License requirements: None.
Y¶
-
NodeCreateBuilder.Y¶ Returns the y
-------------------------------------Getter Method
Signature
YReturns: Return type: NXOpen.ExpressionNew in version NX5.0.0.
License requirements: None.
Z¶
-
NodeCreateBuilder.Z¶ Returns the z
-------------------------------------Getter Method
Signature
ZReturns: Return type: NXOpen.ExpressionNew in version NX5.0.0.
License requirements: None.
Method Detail¶
CommitNode¶
-
NodeCreateBuilder.CommitNode¶ Commits the Builder, which creates the node as it was defined and returns the newly create node.
The method
Builder.Commit()will also do the same thing except no node are returned andBuilder.GetCommittedObjects()can’t be used since this node is not of typeNXOpen.NXObjectSignature
CommitNode()Returns: new Node Return type: NXOpen.CAE.FENodeNew in version NX8.0.3.
License requirements: nx_masterfem (“Finite Element Modeling”)
Validate¶
-
NodeCreateBuilder.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.