The Tf interface is an extension for the RTTI system. The RTTI system is a
technology used in ODA products to dynamically identify a class and get various
information about that class at run-time. The API provides a common way to access
any data of any object in a simple way. ODA BimRv SDK is based on the TfObject
interface, which means that any data object in ODA BimRv SDK can be processed using
it.
To work with the Tf interface, the following main classes are used:
OdTfObject — An extension of the OdRxObject class that provides methods
to access information about an object's class.
OdTfClass — An extension of the OdRxClass that provides additional
class information.
OdTfProperty — Provides information about certain class's property.
OdTfVariant — Stores any data type that is usable with the TfObject
interface.
To use the sample that describes working with the Tf interface, see the Examples/TB_DevGuideCommands/BmTfCmd
sample command inside your ODA BimRv SDK installation folder.