Registers a field conversion engine that can be used to convert from one type of field to another.
Namespace: OIV.InventorAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public static void AddConverter(
Type fromField,
Type toField,
Type converterEngine
)
Public Shared Sub AddConverter (
fromField As Type,
toField As Type,
converterEngine As Type
)
public:
static void AddConverter(
Type^ fromField,
Type^ toField,
Type^ converterEngine
)
static member AddConverter :
fromField : Type *
toField : Type *
converterEngine : Type -> unit
Parameters
- fromField
- Type: SystemType
- toField
- Type: SystemType
- converterEngine
- Type: SystemType
Remarks The type id's of the two fields are passed in, as is the type id of the field converter engine (derived from SoFieldConverter).
See Also