Creates an object based on the passed pointer
and returns a handle to the created object.
Namespace: Teigha.Runtime
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public static RXObject Create(
IntPtr unmanagedPointer,
bool autoDelete
)
Public Shared Function Create (
unmanagedPointer As IntPtr,
autoDelete As Boolean
) As RXObject
public:
static RXObject^ Create(
IntPtr unmanagedPointer,
bool autoDelete
)
static member Create :
unmanagedPointer : IntPtr *
autoDelete : bool -> RXObject
Parameters
- unmanagedPointer IntPtr
- [in] Input unmanaged pointer to the object from which this
object is created.
- autoDelete Boolean
- [in] Input flag that specifies whether the object should be
automatically deleted by the Garbage Collector.
Return Value
RXObject
Handle to the created object.
See Also