AppendedText Class

class NXOpen.Annotations.AppendedText

Bases: NXOpen.TransientObject

Represents Appended text

New in version NX4.0.0.

Methods

Method Description
Dispose Frees the object from memory.
GetAboveText Returns the appended text above the annotation @return List of lines
GetAfterText Returns the appended text after the annotation @return List of lines
GetBeforeText Returns the appended text before the annotation @return List of lines
GetBelowText Returns the appended text below the annotaton @return List of lines
SetAboveText Sets the appended text above the annotation
SetAfterText Sets the appended text after the annotation
SetBeforeText Sets the appended text before the annotation
SetBelowText Sets the appended text below the annotation

Method Detail

Dispose

AppendedText.Dispose

Frees the object from memory.

After this method is called, it is illegal to use the object. In .NET, this method is automatically called when the object is deleted by the garbage collector.

Signature Dispose()

New in version NX4.0.0.

License requirements: None.

GetAboveText

AppendedText.GetAboveText

Returns the appended text above the annotation

Signature GetAboveText()

Returns:List of lines
Return type:list of str

New in version NX4.0.0.

License requirements: None.

GetAfterText

AppendedText.GetAfterText

Returns the appended text after the annotation

Signature GetAfterText()

Returns:List of lines
Return type:list of str

New in version NX4.0.0.

License requirements: None.

GetBeforeText

AppendedText.GetBeforeText

Returns the appended text before the annotation

Signature GetBeforeText()

Returns:List of lines
Return type:list of str

New in version NX4.0.0.

License requirements: None.

GetBelowText

AppendedText.GetBelowText

Returns the appended text below the annotaton

Signature GetBelowText()

Returns:List of lines
Return type:list of str

New in version NX4.0.0.

License requirements: None.

SetAboveText

AppendedText.SetAboveText

Sets the appended text above the annotation

Signature SetAboveText(lines)

Parameters:lines (list of str) – List of new lines

New in version NX4.0.0.

License requirements: None.

SetAfterText

AppendedText.SetAfterText

Sets the appended text after the annotation

Signature SetAfterText(lines)

Parameters:lines (list of str) – List of new lines

New in version NX4.0.0.

License requirements: None.

SetBeforeText

AppendedText.SetBeforeText

Sets the appended text before the annotation

Signature SetBeforeText(lines)

Parameters:lines (list of str) – List of new lines

New in version NX4.0.0.

License requirements: None.

SetBelowText

AppendedText.SetBelowText

Sets the appended text below the annotation

Signature SetBelowText(lines)

Parameters:lines (list of str) – List of new lines

New in version NX4.0.0.

License requirements: None.