BasicModel Class

class NXOpen.CAE.Xyplot.BasicModel

Bases: NXOpen.TaggedObject

Represents a abstract component object on a XY graphing.

Not support KF.

New in version NX10.0.0.

Properties

Property Description
DisplayStyle Returns the model display style
Tag Returns the Tag for this object.

Methods

Method Description
Find Finds the NXObject with the given identifier as recorded in a journal.

Property Detail

DisplayStyle

BasicModel.DisplayStyle

Returns the model display style

-------------------------------------

Getter Method

Signature DisplayStyle()

Returns:Model display style
Return type:NXOpen.CAE.Xyplot.IDisplayStyle

New in version NX10.0.0.

License requirements: nx_ftk (“NX Advanced Graphing”)

Method Detail

Find

BasicModel.Find

Finds the NXObject with the given identifier as recorded in a journal. An object may not return the same value as its JournalIdentifier in different versions of the software. However newer versions of the software should find the same object when FindObject is passed older versions of its journal identifier. In general, this method should not be used in handwritten code and exists to support record and playback of journals.

An exception will be thrown if no object can be found with the given journal identifier.

Signature Find(journalIdentifier)

Parameters:journalIdentifier (str) – Journal identifier of the object
Returns:
Return type:NXOpen.TaggedObject

New in version NX10.0.0.

License requirements: None.