AddFontBuilder Class

class NXOpen.Routing.AddFontBuilder

Bases: NXOpen.Builder

Builder for creating an add font user interface dialogue

To obtain an instance of this class use NXOpen.Routing.AddFontBuilder

New in version NX8.5.0.

Properties

Property Description
Tag Returns the Tag for this object.

Methods

Method Description
Commit Commits any edits that have been applied to the builder.
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.
SetBuilderData Takes selected line and information on the font selected which will be used to build the font
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.

Method Detail

SetBuilderData

AddFontBuilder.SetBuilderData

Takes selected line and information on the font selected which will be used to build the font

Signature SetBuilderData(selLine, lineCoords, fontName, fontScale, fontLayer)

Parameters:
  • selLine (NXOpen.Line) –
  • lineCoords (list of float) – Line Coordinates for font element lines. formatted as x11,y11,x12,y12,x21,y21,x22,y22,x31,… where first subscript = line number; second subscript = start pt(1) or end pt(2) example: y32 = y coordinate of the third line’s end point
  • fontName (str) – Font style chosen, eg “dashed”
  • fontScale (float) – Length dimension of font element measured along selected line; font element length = 2.0 * fontScale
  • fontLayer (int) – 1,2,..255 are valid layers; -1 indicates font to be created in same layer as selLine

New in version NX8.5.0.

License requirements: routing_base (“Routing Basic”)

Validate

AddFontBuilder.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.